This commit is contained in:
2023-07-27 16:58:05 +08:00
9 changed files with 769 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.jsowell.pile.domain;
import lombok.Data;
/**
* 代开发小程序 授权事件接收URL 返回值
*
* @author Lemon
* @Date 2023/7/27 15:54
*/
@Data
public class AuthorizationEventResult<T> {
private int code;
private String msg;
private String errorMsg;
private String data;
}