feat: 更改字段类型
This commit is contained in:
@@ -1,233 +1,233 @@
|
||||
package com.schisandra.system.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 短信配置信息表 dto
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-06-19 22:20:47
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSmsConfigDTO implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 配置id
|
||||
*/
|
||||
private String configId;
|
||||
|
||||
/**
|
||||
* 请求地址
|
||||
*/
|
||||
private String requestUrl;
|
||||
|
||||
/**
|
||||
* 模板变量名称
|
||||
*/
|
||||
private String templateName;
|
||||
|
||||
/**
|
||||
* 接口名称
|
||||
*/
|
||||
private String action;
|
||||
|
||||
/**
|
||||
* 地域信息
|
||||
*/
|
||||
private String region;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String accessKeyId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String accessKeySecret;
|
||||
|
||||
/**
|
||||
* 厂商名称标识
|
||||
*/
|
||||
private String supplier;
|
||||
|
||||
/**
|
||||
* 短信签名
|
||||
*/
|
||||
private String signature;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String sdkAppId;
|
||||
|
||||
/**
|
||||
* 模板ID
|
||||
*/
|
||||
private String templateId;
|
||||
|
||||
/**
|
||||
* 权重
|
||||
*/
|
||||
private Integer weight;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
private Integer retryInterval;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
private Integer maxRetries;
|
||||
|
||||
/**
|
||||
* 厂商的发送数量上限,默认不设置上限
|
||||
*/
|
||||
private Long maximum;
|
||||
|
||||
/**
|
||||
* REST API Base URL
|
||||
*/
|
||||
private String baseUrl;
|
||||
|
||||
/**
|
||||
* 请求域名
|
||||
*/
|
||||
private String serverIp;
|
||||
|
||||
/**
|
||||
* 请求端口
|
||||
*/
|
||||
private Integer serverPort;
|
||||
|
||||
/**
|
||||
* 国内短信签名通道号
|
||||
*/
|
||||
private String sender;
|
||||
|
||||
/**
|
||||
* 短信状态报告接收地
|
||||
*/
|
||||
private String statusCallBack;
|
||||
|
||||
/**
|
||||
* APP接入地址
|
||||
*/
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* 模板短信请求地址
|
||||
*/
|
||||
private String templateUrl;
|
||||
|
||||
/**
|
||||
* 验证码短信请求地址
|
||||
*/
|
||||
private String codeUrl;
|
||||
|
||||
/**
|
||||
* 验证码验证请求地址
|
||||
*/
|
||||
private String verifyUrl;
|
||||
|
||||
/**
|
||||
* 是否需要支持短信上行。true:需要,false:不需要false
|
||||
*/
|
||||
private String needUp;
|
||||
|
||||
/**
|
||||
* 请求超时时间
|
||||
*/
|
||||
private Integer connTimeout;
|
||||
|
||||
/**
|
||||
* 是否为简易模式
|
||||
*/
|
||||
private String isSimple;
|
||||
|
||||
/**
|
||||
* 短信发送后将向这个地址推送(运营商返回的)发送报告
|
||||
*/
|
||||
private String callbackUrl;
|
||||
|
||||
/**
|
||||
* 企业ID
|
||||
*/
|
||||
private Integer mchId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String appKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Integer appId;
|
||||
|
||||
/**
|
||||
* 版本号
|
||||
*/
|
||||
private String version;
|
||||
|
||||
/**
|
||||
* 单发链接
|
||||
*/
|
||||
private String singleMsgUrl;
|
||||
|
||||
/**
|
||||
* 群发链接
|
||||
*/
|
||||
private String massMsgUrl;
|
||||
|
||||
/**
|
||||
* 签名ID
|
||||
*/
|
||||
private String signatureId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String extraJson;
|
||||
|
||||
/**
|
||||
* 服务名
|
||||
*/
|
||||
private String service;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 短信配置信息表 dto
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-06-19 22:20:47
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSmsConfigDTO implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 配置id
|
||||
*/
|
||||
private String configId;
|
||||
|
||||
/**
|
||||
* 请求地址
|
||||
*/
|
||||
private String requestUrl;
|
||||
|
||||
/**
|
||||
* 模板变量名称
|
||||
*/
|
||||
private String templateName;
|
||||
|
||||
/**
|
||||
* 接口名称
|
||||
*/
|
||||
private String action;
|
||||
|
||||
/**
|
||||
* 地域信息
|
||||
*/
|
||||
private String region;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String accessKeyId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String accessKeySecret;
|
||||
|
||||
/**
|
||||
* 厂商名称标识
|
||||
*/
|
||||
private String supplier;
|
||||
|
||||
/**
|
||||
* 短信签名
|
||||
*/
|
||||
private String signature;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String sdkAppId;
|
||||
|
||||
/**
|
||||
* 模板ID
|
||||
*/
|
||||
private String templateId;
|
||||
|
||||
/**
|
||||
* 权重
|
||||
*/
|
||||
private Integer weight;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
private Integer retryInterval;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
private Integer maxRetries;
|
||||
|
||||
/**
|
||||
* 厂商的发送数量上限,默认不设置上限
|
||||
*/
|
||||
private Long maximum;
|
||||
|
||||
/**
|
||||
* REST API Base URL
|
||||
*/
|
||||
private String baseUrl;
|
||||
|
||||
/**
|
||||
* 请求域名
|
||||
*/
|
||||
private String serverIp;
|
||||
|
||||
/**
|
||||
* 请求端口
|
||||
*/
|
||||
private Integer serverPort;
|
||||
|
||||
/**
|
||||
* 国内短信签名通道号
|
||||
*/
|
||||
private String sender;
|
||||
|
||||
/**
|
||||
* 短信状态报告接收地
|
||||
*/
|
||||
private String statusCallBack;
|
||||
|
||||
/**
|
||||
* APP接入地址
|
||||
*/
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* 模板短信请求地址
|
||||
*/
|
||||
private String templateUrl;
|
||||
|
||||
/**
|
||||
* 验证码短信请求地址
|
||||
*/
|
||||
private String codeUrl;
|
||||
|
||||
/**
|
||||
* 验证码验证请求地址
|
||||
*/
|
||||
private String verifyUrl;
|
||||
|
||||
/**
|
||||
* 是否需要支持短信上行。true:需要,false:不需要false
|
||||
*/
|
||||
private String needUp;
|
||||
|
||||
/**
|
||||
* 请求超时时间
|
||||
*/
|
||||
private Integer connTimeout;
|
||||
|
||||
/**
|
||||
* 是否为简易模式
|
||||
*/
|
||||
private String isSimple;
|
||||
|
||||
/**
|
||||
* 短信发送后将向这个地址推送(运营商返回的)发送报告
|
||||
*/
|
||||
private String callbackUrl;
|
||||
|
||||
/**
|
||||
* 企业ID
|
||||
*/
|
||||
private Integer mchId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String appKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Integer appId;
|
||||
|
||||
/**
|
||||
* 版本号
|
||||
*/
|
||||
private String version;
|
||||
|
||||
/**
|
||||
* 单发链接
|
||||
*/
|
||||
private String singleMsgUrl;
|
||||
|
||||
/**
|
||||
* 群发链接
|
||||
*/
|
||||
private String massMsgUrl;
|
||||
|
||||
/**
|
||||
* 签名ID
|
||||
*/
|
||||
private String signatureId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String extraJson;
|
||||
|
||||
/**
|
||||
* 服务名
|
||||
*/
|
||||
private String service;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,73 +1,73 @@
|
||||
package com.schisandra.system.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* dto
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-11 22:45:55
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysConfigDTO implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String configName;
|
||||
|
||||
/**
|
||||
* 参数键
|
||||
*/
|
||||
private String configKey;
|
||||
|
||||
/**
|
||||
* 参数值
|
||||
*/
|
||||
private String configValue;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 系统内置(0是 1否)
|
||||
*/
|
||||
private Integer configType;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateDate;
|
||||
|
||||
/**
|
||||
* 备注信息
|
||||
*/
|
||||
private String remarks;
|
||||
|
||||
/**
|
||||
* 是否删除 0未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* dto
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-11 22:45:55
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysConfigDTO implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String configName;
|
||||
|
||||
/**
|
||||
* 参数键
|
||||
*/
|
||||
private String configKey;
|
||||
|
||||
/**
|
||||
* 参数值
|
||||
*/
|
||||
private String configValue;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 系统内置(0是 1否)
|
||||
*/
|
||||
private Integer configType;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateDate;
|
||||
|
||||
/**
|
||||
* 备注信息
|
||||
*/
|
||||
private String remarks;
|
||||
|
||||
/**
|
||||
* 是否删除 0未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,98 +1,98 @@
|
||||
package com.schisandra.system.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* dto
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-25 23:08:26
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysOauthDTO implements Serializable {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private String clientType;
|
||||
|
||||
/**
|
||||
* Client Id
|
||||
*/
|
||||
private String clientId;
|
||||
|
||||
/**
|
||||
* Client Secret
|
||||
*/
|
||||
private String clientSecret;
|
||||
|
||||
/**
|
||||
* 应用回调地址
|
||||
*/
|
||||
private String redirectUri;
|
||||
|
||||
/**
|
||||
* Key
|
||||
*/
|
||||
private String stackOverflowKey;
|
||||
|
||||
/**
|
||||
* 团队名
|
||||
*/
|
||||
private String domainPrefix;
|
||||
|
||||
/**
|
||||
* 目录(租户) ID
|
||||
*/
|
||||
private String tenantId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String alipayPublicKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String agentId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
private String status;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* dto
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-25 23:08:26
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysOauthDTO implements Serializable {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private String clientType;
|
||||
|
||||
/**
|
||||
* Client Id
|
||||
*/
|
||||
private String clientId;
|
||||
|
||||
/**
|
||||
* Client Secret
|
||||
*/
|
||||
private String clientSecret;
|
||||
|
||||
/**
|
||||
* 应用回调地址
|
||||
*/
|
||||
private String redirectUri;
|
||||
|
||||
/**
|
||||
* Key
|
||||
*/
|
||||
private String stackOverflowKey;
|
||||
|
||||
/**
|
||||
* 团队名
|
||||
*/
|
||||
private String domainPrefix;
|
||||
|
||||
/**
|
||||
* 目录(租户) ID
|
||||
*/
|
||||
private String tenantId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String alipayPublicKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String agentId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
private String status;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,119 +1,119 @@
|
||||
package com.schisandra.system.application.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* dto
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-12 14:21:42
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysLogDTO implements Serializable {
|
||||
|
||||
/**
|
||||
* 编号
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 日志类型
|
||||
*/
|
||||
private String logType;
|
||||
|
||||
/**
|
||||
* 日志标题
|
||||
*/
|
||||
private String logTitle;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
private String createByName;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 请求URI
|
||||
*/
|
||||
private String requestUri;
|
||||
|
||||
/**
|
||||
* 操作方式
|
||||
*/
|
||||
private String requestMethod;
|
||||
|
||||
/**
|
||||
* 操作提交的数据
|
||||
*/
|
||||
private String requestParams;
|
||||
|
||||
/**
|
||||
* 新旧数据比较结果
|
||||
*/
|
||||
private String diffModifyData;
|
||||
|
||||
/**
|
||||
* 业务主键
|
||||
*/
|
||||
private String bizKey;
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
*/
|
||||
private String bizType;
|
||||
|
||||
/**
|
||||
* 操作IP地址
|
||||
*/
|
||||
private String remoteAddr;
|
||||
|
||||
/**
|
||||
* 请求服务器地址
|
||||
*/
|
||||
private String serverAddr;
|
||||
|
||||
/**
|
||||
* 是否异常
|
||||
*/
|
||||
private String isException;
|
||||
|
||||
/**
|
||||
* 异常信息
|
||||
*/
|
||||
private String exceptionInfo;
|
||||
|
||||
/**
|
||||
* 用户代理
|
||||
*/
|
||||
private String userAgent;
|
||||
|
||||
/**
|
||||
* 设备名称/操作系统
|
||||
*/
|
||||
private String deviceName;
|
||||
|
||||
/**
|
||||
* 浏览器名称
|
||||
*/
|
||||
private String browserName;
|
||||
|
||||
/**
|
||||
* 执行时间
|
||||
*/
|
||||
private BigDecimal executeTime;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.application.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* dto
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-12 14:21:42
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysLogDTO implements Serializable {
|
||||
|
||||
/**
|
||||
* 编号
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 日志类型
|
||||
*/
|
||||
private String logType;
|
||||
|
||||
/**
|
||||
* 日志标题
|
||||
*/
|
||||
private String logTitle;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
private String createByName;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 请求URI
|
||||
*/
|
||||
private String requestUri;
|
||||
|
||||
/**
|
||||
* 操作方式
|
||||
*/
|
||||
private String requestMethod;
|
||||
|
||||
/**
|
||||
* 操作提交的数据
|
||||
*/
|
||||
private String requestParams;
|
||||
|
||||
/**
|
||||
* 新旧数据比较结果
|
||||
*/
|
||||
private String diffModifyData;
|
||||
|
||||
/**
|
||||
* 业务主键
|
||||
*/
|
||||
private String bizKey;
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
*/
|
||||
private String bizType;
|
||||
|
||||
/**
|
||||
* 操作IP地址
|
||||
*/
|
||||
private String remoteAddr;
|
||||
|
||||
/**
|
||||
* 请求服务器地址
|
||||
*/
|
||||
private String serverAddr;
|
||||
|
||||
/**
|
||||
* 是否异常
|
||||
*/
|
||||
private String isException;
|
||||
|
||||
/**
|
||||
* 异常信息
|
||||
*/
|
||||
private String exceptionInfo;
|
||||
|
||||
/**
|
||||
* 用户代理
|
||||
*/
|
||||
private String userAgent;
|
||||
|
||||
/**
|
||||
* 设备名称/操作系统
|
||||
*/
|
||||
private String deviceName;
|
||||
|
||||
/**
|
||||
* 浏览器名称
|
||||
*/
|
||||
private String browserName;
|
||||
|
||||
/**
|
||||
* 执行时间
|
||||
*/
|
||||
private BigDecimal executeTime;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,232 +1,232 @@
|
||||
package com.schisandra.system.domain.bo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
/**
|
||||
* 短信配置信息表 bo
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-06-19 22:20:47
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSmsConfigBO implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 配置id
|
||||
*/
|
||||
private String configId;
|
||||
|
||||
/**
|
||||
* 请求地址
|
||||
*/
|
||||
private String requestUrl;
|
||||
|
||||
/**
|
||||
* 模板变量名称
|
||||
*/
|
||||
private String templateName;
|
||||
|
||||
/**
|
||||
* 接口名称
|
||||
*/
|
||||
private String action;
|
||||
|
||||
/**
|
||||
* 地域信息
|
||||
*/
|
||||
private String region;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String accessKeyId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String accessKeySecret;
|
||||
|
||||
/**
|
||||
* 厂商名称标识
|
||||
*/
|
||||
private String supplier;
|
||||
|
||||
/**
|
||||
* 短信签名
|
||||
*/
|
||||
private String signature;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String sdkAppId;
|
||||
|
||||
/**
|
||||
* 模板ID
|
||||
*/
|
||||
private String templateId;
|
||||
|
||||
/**
|
||||
* 权重
|
||||
*/
|
||||
private Integer weight;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
private Integer retryInterval;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
private Integer maxRetries;
|
||||
|
||||
/**
|
||||
* 厂商的发送数量上限,默认不设置上限
|
||||
*/
|
||||
private Long maximum;
|
||||
|
||||
/**
|
||||
* REST API Base URL
|
||||
*/
|
||||
private String baseUrl;
|
||||
|
||||
/**
|
||||
* 请求域名
|
||||
*/
|
||||
private String serverIp;
|
||||
|
||||
/**
|
||||
* 请求端口
|
||||
*/
|
||||
private Integer serverPort;
|
||||
|
||||
/**
|
||||
* 国内短信签名通道号
|
||||
*/
|
||||
private String sender;
|
||||
|
||||
/**
|
||||
* 短信状态报告接收地
|
||||
*/
|
||||
private String statusCallBack;
|
||||
|
||||
/**
|
||||
* APP接入地址
|
||||
*/
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* 模板短信请求地址
|
||||
*/
|
||||
private String templateUrl;
|
||||
|
||||
/**
|
||||
* 验证码短信请求地址
|
||||
*/
|
||||
private String codeUrl;
|
||||
|
||||
/**
|
||||
* 验证码验证请求地址
|
||||
*/
|
||||
private String verifyUrl;
|
||||
|
||||
/**
|
||||
* 是否需要支持短信上行。true:需要,false:不需要false
|
||||
*/
|
||||
private String needUp;
|
||||
|
||||
/**
|
||||
* 请求超时时间
|
||||
*/
|
||||
private Integer connTimeout;
|
||||
|
||||
/**
|
||||
* 是否为简易模式
|
||||
*/
|
||||
private String isSimple;
|
||||
|
||||
/**
|
||||
* 短信发送后将向这个地址推送(运营商返回的)发送报告
|
||||
*/
|
||||
private String callbackUrl;
|
||||
|
||||
/**
|
||||
* 企业ID
|
||||
*/
|
||||
private Integer mchId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String appKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Integer appId;
|
||||
|
||||
/**
|
||||
* 版本号
|
||||
*/
|
||||
private String version;
|
||||
|
||||
/**
|
||||
* 单发链接
|
||||
*/
|
||||
private String singleMsgUrl;
|
||||
|
||||
/**
|
||||
* 群发链接
|
||||
*/
|
||||
private String massMsgUrl;
|
||||
|
||||
/**
|
||||
* 签名ID
|
||||
*/
|
||||
private String signatureId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String extraJson;
|
||||
|
||||
/**
|
||||
* 服务名
|
||||
*/
|
||||
private String service;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.domain.bo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
/**
|
||||
* 短信配置信息表 bo
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-06-19 22:20:47
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSmsConfigBO implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 配置id
|
||||
*/
|
||||
private String configId;
|
||||
|
||||
/**
|
||||
* 请求地址
|
||||
*/
|
||||
private String requestUrl;
|
||||
|
||||
/**
|
||||
* 模板变量名称
|
||||
*/
|
||||
private String templateName;
|
||||
|
||||
/**
|
||||
* 接口名称
|
||||
*/
|
||||
private String action;
|
||||
|
||||
/**
|
||||
* 地域信息
|
||||
*/
|
||||
private String region;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String accessKeyId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String accessKeySecret;
|
||||
|
||||
/**
|
||||
* 厂商名称标识
|
||||
*/
|
||||
private String supplier;
|
||||
|
||||
/**
|
||||
* 短信签名
|
||||
*/
|
||||
private String signature;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String sdkAppId;
|
||||
|
||||
/**
|
||||
* 模板ID
|
||||
*/
|
||||
private String templateId;
|
||||
|
||||
/**
|
||||
* 权重
|
||||
*/
|
||||
private Integer weight;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
private Integer retryInterval;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
private Integer maxRetries;
|
||||
|
||||
/**
|
||||
* 厂商的发送数量上限,默认不设置上限
|
||||
*/
|
||||
private Long maximum;
|
||||
|
||||
/**
|
||||
* REST API Base URL
|
||||
*/
|
||||
private String baseUrl;
|
||||
|
||||
/**
|
||||
* 请求域名
|
||||
*/
|
||||
private String serverIp;
|
||||
|
||||
/**
|
||||
* 请求端口
|
||||
*/
|
||||
private Integer serverPort;
|
||||
|
||||
/**
|
||||
* 国内短信签名通道号
|
||||
*/
|
||||
private String sender;
|
||||
|
||||
/**
|
||||
* 短信状态报告接收地
|
||||
*/
|
||||
private String statusCallBack;
|
||||
|
||||
/**
|
||||
* APP接入地址
|
||||
*/
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* 模板短信请求地址
|
||||
*/
|
||||
private String templateUrl;
|
||||
|
||||
/**
|
||||
* 验证码短信请求地址
|
||||
*/
|
||||
private String codeUrl;
|
||||
|
||||
/**
|
||||
* 验证码验证请求地址
|
||||
*/
|
||||
private String verifyUrl;
|
||||
|
||||
/**
|
||||
* 是否需要支持短信上行。true:需要,false:不需要false
|
||||
*/
|
||||
private String needUp;
|
||||
|
||||
/**
|
||||
* 请求超时时间
|
||||
*/
|
||||
private Integer connTimeout;
|
||||
|
||||
/**
|
||||
* 是否为简易模式
|
||||
*/
|
||||
private String isSimple;
|
||||
|
||||
/**
|
||||
* 短信发送后将向这个地址推送(运营商返回的)发送报告
|
||||
*/
|
||||
private String callbackUrl;
|
||||
|
||||
/**
|
||||
* 企业ID
|
||||
*/
|
||||
private Integer mchId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String appKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Integer appId;
|
||||
|
||||
/**
|
||||
* 版本号
|
||||
*/
|
||||
private String version;
|
||||
|
||||
/**
|
||||
* 单发链接
|
||||
*/
|
||||
private String singleMsgUrl;
|
||||
|
||||
/**
|
||||
* 群发链接
|
||||
*/
|
||||
private String massMsgUrl;
|
||||
|
||||
/**
|
||||
* 签名ID
|
||||
*/
|
||||
private String signatureId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String extraJson;
|
||||
|
||||
/**
|
||||
* 服务名
|
||||
*/
|
||||
private String service;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,73 +1,73 @@
|
||||
package com.schisandra.system.domain.bo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* bo
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-11 22:45:55
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysConfigBO implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String configName;
|
||||
|
||||
/**
|
||||
* 参数键
|
||||
*/
|
||||
private String configKey;
|
||||
|
||||
/**
|
||||
* 参数值
|
||||
*/
|
||||
private String configValue;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 系统内置(0是 1否)
|
||||
*/
|
||||
private Integer configType;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateDate;
|
||||
|
||||
/**
|
||||
* 备注信息
|
||||
*/
|
||||
private String remarks;
|
||||
|
||||
/**
|
||||
* 是否删除 0未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.domain.bo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* bo
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-11 22:45:55
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysConfigBO implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String configName;
|
||||
|
||||
/**
|
||||
* 参数键
|
||||
*/
|
||||
private String configKey;
|
||||
|
||||
/**
|
||||
* 参数值
|
||||
*/
|
||||
private String configValue;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 系统内置(0是 1否)
|
||||
*/
|
||||
private Integer configType;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateDate;
|
||||
|
||||
/**
|
||||
* 备注信息
|
||||
*/
|
||||
private String remarks;
|
||||
|
||||
/**
|
||||
* 是否删除 0未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,119 +1,119 @@
|
||||
package com.schisandra.system.domain.bo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* bo
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-12 14:21:42
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysLogBO implements Serializable {
|
||||
|
||||
/**
|
||||
* 编号
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 日志类型
|
||||
*/
|
||||
private String logType;
|
||||
|
||||
/**
|
||||
* 日志标题
|
||||
*/
|
||||
private String logTitle;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
private String createByName;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 请求URI
|
||||
*/
|
||||
private String requestUri;
|
||||
|
||||
/**
|
||||
* 操作方式
|
||||
*/
|
||||
private String requestMethod;
|
||||
|
||||
/**
|
||||
* 操作提交的数据
|
||||
*/
|
||||
private String requestParams;
|
||||
|
||||
/**
|
||||
* 新旧数据比较结果
|
||||
*/
|
||||
private String diffModifyData;
|
||||
|
||||
/**
|
||||
* 业务主键
|
||||
*/
|
||||
private String bizKey;
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
*/
|
||||
private String bizType;
|
||||
|
||||
/**
|
||||
* 操作IP地址
|
||||
*/
|
||||
private String remoteAddr;
|
||||
|
||||
/**
|
||||
* 请求服务器地址
|
||||
*/
|
||||
private String serverAddr;
|
||||
|
||||
/**
|
||||
* 是否异常
|
||||
*/
|
||||
private String isException;
|
||||
|
||||
/**
|
||||
* 异常信息
|
||||
*/
|
||||
private String exceptionInfo;
|
||||
|
||||
/**
|
||||
* 用户代理
|
||||
*/
|
||||
private String userAgent;
|
||||
|
||||
/**
|
||||
* 设备名称/操作系统
|
||||
*/
|
||||
private String deviceName;
|
||||
|
||||
/**
|
||||
* 浏览器名称
|
||||
*/
|
||||
private String browserName;
|
||||
|
||||
/**
|
||||
* 执行时间
|
||||
*/
|
||||
private BigDecimal executeTime;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.domain.bo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* bo
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-12 14:21:42
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysLogBO implements Serializable {
|
||||
|
||||
/**
|
||||
* 编号
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 日志类型
|
||||
*/
|
||||
private String logType;
|
||||
|
||||
/**
|
||||
* 日志标题
|
||||
*/
|
||||
private String logTitle;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
private String createByName;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 请求URI
|
||||
*/
|
||||
private String requestUri;
|
||||
|
||||
/**
|
||||
* 操作方式
|
||||
*/
|
||||
private String requestMethod;
|
||||
|
||||
/**
|
||||
* 操作提交的数据
|
||||
*/
|
||||
private String requestParams;
|
||||
|
||||
/**
|
||||
* 新旧数据比较结果
|
||||
*/
|
||||
private String diffModifyData;
|
||||
|
||||
/**
|
||||
* 业务主键
|
||||
*/
|
||||
private String bizKey;
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
*/
|
||||
private String bizType;
|
||||
|
||||
/**
|
||||
* 操作IP地址
|
||||
*/
|
||||
private String remoteAddr;
|
||||
|
||||
/**
|
||||
* 请求服务器地址
|
||||
*/
|
||||
private String serverAddr;
|
||||
|
||||
/**
|
||||
* 是否异常
|
||||
*/
|
||||
private String isException;
|
||||
|
||||
/**
|
||||
* 异常信息
|
||||
*/
|
||||
private String exceptionInfo;
|
||||
|
||||
/**
|
||||
* 用户代理
|
||||
*/
|
||||
private String userAgent;
|
||||
|
||||
/**
|
||||
* 设备名称/操作系统
|
||||
*/
|
||||
private String deviceName;
|
||||
|
||||
/**
|
||||
* 浏览器名称
|
||||
*/
|
||||
private String browserName;
|
||||
|
||||
/**
|
||||
* 执行时间
|
||||
*/
|
||||
private BigDecimal executeTime;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,98 +1,98 @@
|
||||
package com.schisandra.system.domain.bo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* bo
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-25 23:08:26
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysOauthBO implements Serializable {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private String clientType;
|
||||
|
||||
/**
|
||||
* Client Id
|
||||
*/
|
||||
private String clientId;
|
||||
|
||||
/**
|
||||
* Client Secret
|
||||
*/
|
||||
private String clientSecret;
|
||||
|
||||
/**
|
||||
* 应用回调地址
|
||||
*/
|
||||
private String redirectUri;
|
||||
|
||||
/**
|
||||
* Key
|
||||
*/
|
||||
private String stackOverflowKey;
|
||||
|
||||
/**
|
||||
* 团队名
|
||||
*/
|
||||
private String domainPrefix;
|
||||
|
||||
/**
|
||||
* 目录(租户) ID
|
||||
*/
|
||||
private String tenantId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String alipayPublicKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String agentId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
private String status;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.domain.bo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* bo
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-25 23:08:26
|
||||
*/
|
||||
@Data
|
||||
public class SchisandraSysOauthBO implements Serializable {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private String clientType;
|
||||
|
||||
/**
|
||||
* Client Id
|
||||
*/
|
||||
private String clientId;
|
||||
|
||||
/**
|
||||
* Client Secret
|
||||
*/
|
||||
private String clientSecret;
|
||||
|
||||
/**
|
||||
* 应用回调地址
|
||||
*/
|
||||
private String redirectUri;
|
||||
|
||||
/**
|
||||
* Key
|
||||
*/
|
||||
private String stackOverflowKey;
|
||||
|
||||
/**
|
||||
* 团队名
|
||||
*/
|
||||
private String domainPrefix;
|
||||
|
||||
/**
|
||||
* 目录(租户) ID
|
||||
*/
|
||||
private String tenantId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String alipayPublicKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String agentId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
private String status;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,282 +1,282 @@
|
||||
package com.schisandra.system.infra.basic.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.mybatisflex.core.keygen.KeyGenerators;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 短信配置信息表 实体类
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-06-19 22:20:47
|
||||
*/
|
||||
@Data
|
||||
@Table("schisandra_sms_config")
|
||||
public class SchisandraSmsConfig implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
@Id(keyType=KeyType.Generator, value= KeyGenerators.flexId)
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 配置id
|
||||
*/
|
||||
@Column("config_id")
|
||||
private String configId;
|
||||
|
||||
/**
|
||||
* 请求地址
|
||||
*/
|
||||
@Column("request_url")
|
||||
private String requestUrl;
|
||||
|
||||
/**
|
||||
* 模板变量名称
|
||||
*/
|
||||
@Column("template_name")
|
||||
private String templateName;
|
||||
|
||||
/**
|
||||
* 接口名称
|
||||
*/
|
||||
@Column("action")
|
||||
private String action;
|
||||
|
||||
/**
|
||||
* 地域信息
|
||||
*/
|
||||
@Column("region")
|
||||
private String region;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("access_key_id")
|
||||
private String accessKeyId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("access_key_secret")
|
||||
private String accessKeySecret;
|
||||
|
||||
/**
|
||||
* 厂商名称标识
|
||||
*/
|
||||
@Column("supplier")
|
||||
private String supplier;
|
||||
|
||||
/**
|
||||
* 短信签名
|
||||
*/
|
||||
@Column("signature")
|
||||
private String signature;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("sdk_app_id")
|
||||
private String sdkAppId;
|
||||
|
||||
/**
|
||||
* 模板ID
|
||||
*/
|
||||
@Column("template_id")
|
||||
private String templateId;
|
||||
|
||||
/**
|
||||
* 权重
|
||||
*/
|
||||
@Column("weight")
|
||||
private Integer weight;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
@Column("retry_interval")
|
||||
private Integer retryInterval;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
@Column("max_retries")
|
||||
private Integer maxRetries;
|
||||
|
||||
/**
|
||||
* 厂商的发送数量上限,默认不设置上限
|
||||
*/
|
||||
@Column("maximum")
|
||||
private Long maximum;
|
||||
|
||||
/**
|
||||
* REST API Base URL
|
||||
*/
|
||||
@Column("base_url")
|
||||
private String baseUrl;
|
||||
|
||||
/**
|
||||
* 请求域名
|
||||
*/
|
||||
@Column("server_ip")
|
||||
private String serverIp;
|
||||
|
||||
/**
|
||||
* 请求端口
|
||||
*/
|
||||
@Column("server_port")
|
||||
private Integer serverPort;
|
||||
|
||||
/**
|
||||
* 国内短信签名通道号
|
||||
*/
|
||||
@Column("sender")
|
||||
private String sender;
|
||||
|
||||
/**
|
||||
* 短信状态报告接收地
|
||||
*/
|
||||
@Column("status_call_back")
|
||||
private String statusCallBack;
|
||||
|
||||
/**
|
||||
* APP接入地址
|
||||
*/
|
||||
@Column("url")
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* 模板短信请求地址
|
||||
*/
|
||||
@Column("template_url")
|
||||
private String templateUrl;
|
||||
|
||||
/**
|
||||
* 验证码短信请求地址
|
||||
*/
|
||||
@Column("code_url")
|
||||
private String codeUrl;
|
||||
|
||||
/**
|
||||
* 验证码验证请求地址
|
||||
*/
|
||||
@Column("verify_url")
|
||||
private String verifyUrl;
|
||||
|
||||
/**
|
||||
* 是否需要支持短信上行。true:需要,false:不需要false
|
||||
*/
|
||||
@Column("need_up")
|
||||
private String needUp;
|
||||
|
||||
/**
|
||||
* 请求超时时间
|
||||
*/
|
||||
@Column("conn_timeout")
|
||||
private Integer connTimeout;
|
||||
|
||||
/**
|
||||
* 是否为简易模式
|
||||
*/
|
||||
@Column("is_simple")
|
||||
private String isSimple;
|
||||
|
||||
/**
|
||||
* 短信发送后将向这个地址推送(运营商返回的)发送报告
|
||||
*/
|
||||
@Column("callback_url")
|
||||
private String callbackUrl;
|
||||
|
||||
/**
|
||||
* 企业ID
|
||||
*/
|
||||
@Column("mch_id")
|
||||
private Integer mchId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("app_key")
|
||||
private String appKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("app_id")
|
||||
private Integer appId;
|
||||
|
||||
/**
|
||||
* 版本号
|
||||
*/
|
||||
@Column("version")
|
||||
private String version;
|
||||
|
||||
/**
|
||||
* 单发链接
|
||||
*/
|
||||
@Column("single_msg_url")
|
||||
private String singleMsgUrl;
|
||||
|
||||
/**
|
||||
* 群发链接
|
||||
*/
|
||||
@Column("mass_msg_url")
|
||||
private String massMsgUrl;
|
||||
|
||||
/**
|
||||
* 签名ID
|
||||
*/
|
||||
@Column("signature_Id")
|
||||
private String signatureId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@Column("created_by")
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Column(value = "created_time",onInsertValue = "now()")
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@Column(value = "update_time",onUpdateValue = "now()")
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
@Column("update_by")
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
@Column(value = "is_deleted",isLogicDelete = true)
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("extra_json")
|
||||
private String extraJson;
|
||||
|
||||
/**
|
||||
* 服务名
|
||||
*/
|
||||
@Column("service")
|
||||
private String service;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.infra.basic.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.mybatisflex.core.keygen.KeyGenerators;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 短信配置信息表 实体类
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-06-19 22:20:47
|
||||
*/
|
||||
@Data
|
||||
@Table("schisandra_sms_config")
|
||||
public class SchisandraSmsConfig implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
@Id(keyType=KeyType.Generator, value= KeyGenerators.flexId)
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 配置id
|
||||
*/
|
||||
@Column("config_id")
|
||||
private String configId;
|
||||
|
||||
/**
|
||||
* 请求地址
|
||||
*/
|
||||
@Column("request_url")
|
||||
private String requestUrl;
|
||||
|
||||
/**
|
||||
* 模板变量名称
|
||||
*/
|
||||
@Column("template_name")
|
||||
private String templateName;
|
||||
|
||||
/**
|
||||
* 接口名称
|
||||
*/
|
||||
@Column("action")
|
||||
private String action;
|
||||
|
||||
/**
|
||||
* 地域信息
|
||||
*/
|
||||
@Column("region")
|
||||
private String region;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("access_key_id")
|
||||
private String accessKeyId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("access_key_secret")
|
||||
private String accessKeySecret;
|
||||
|
||||
/**
|
||||
* 厂商名称标识
|
||||
*/
|
||||
@Column("supplier")
|
||||
private String supplier;
|
||||
|
||||
/**
|
||||
* 短信签名
|
||||
*/
|
||||
@Column("signature")
|
||||
private String signature;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("sdk_app_id")
|
||||
private String sdkAppId;
|
||||
|
||||
/**
|
||||
* 模板ID
|
||||
*/
|
||||
@Column("template_id")
|
||||
private String templateId;
|
||||
|
||||
/**
|
||||
* 权重
|
||||
*/
|
||||
@Column("weight")
|
||||
private Integer weight;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
@Column("retry_interval")
|
||||
private Integer retryInterval;
|
||||
|
||||
/**
|
||||
* 短信重试次数,默认0次不重试
|
||||
*/
|
||||
@Column("max_retries")
|
||||
private Integer maxRetries;
|
||||
|
||||
/**
|
||||
* 厂商的发送数量上限,默认不设置上限
|
||||
*/
|
||||
@Column("maximum")
|
||||
private Long maximum;
|
||||
|
||||
/**
|
||||
* REST API Base URL
|
||||
*/
|
||||
@Column("base_url")
|
||||
private String baseUrl;
|
||||
|
||||
/**
|
||||
* 请求域名
|
||||
*/
|
||||
@Column("server_ip")
|
||||
private String serverIp;
|
||||
|
||||
/**
|
||||
* 请求端口
|
||||
*/
|
||||
@Column("server_port")
|
||||
private Integer serverPort;
|
||||
|
||||
/**
|
||||
* 国内短信签名通道号
|
||||
*/
|
||||
@Column("sender")
|
||||
private String sender;
|
||||
|
||||
/**
|
||||
* 短信状态报告接收地
|
||||
*/
|
||||
@Column("status_call_back")
|
||||
private String statusCallBack;
|
||||
|
||||
/**
|
||||
* APP接入地址
|
||||
*/
|
||||
@Column("url")
|
||||
private String url;
|
||||
|
||||
/**
|
||||
* 模板短信请求地址
|
||||
*/
|
||||
@Column("template_url")
|
||||
private String templateUrl;
|
||||
|
||||
/**
|
||||
* 验证码短信请求地址
|
||||
*/
|
||||
@Column("code_url")
|
||||
private String codeUrl;
|
||||
|
||||
/**
|
||||
* 验证码验证请求地址
|
||||
*/
|
||||
@Column("verify_url")
|
||||
private String verifyUrl;
|
||||
|
||||
/**
|
||||
* 是否需要支持短信上行。true:需要,false:不需要false
|
||||
*/
|
||||
@Column("need_up")
|
||||
private String needUp;
|
||||
|
||||
/**
|
||||
* 请求超时时间
|
||||
*/
|
||||
@Column("conn_timeout")
|
||||
private Integer connTimeout;
|
||||
|
||||
/**
|
||||
* 是否为简易模式
|
||||
*/
|
||||
@Column("is_simple")
|
||||
private String isSimple;
|
||||
|
||||
/**
|
||||
* 短信发送后将向这个地址推送(运营商返回的)发送报告
|
||||
*/
|
||||
@Column("callback_url")
|
||||
private String callbackUrl;
|
||||
|
||||
/**
|
||||
* 企业ID
|
||||
*/
|
||||
@Column("mch_id")
|
||||
private Integer mchId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("app_key")
|
||||
private String appKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("app_id")
|
||||
private Integer appId;
|
||||
|
||||
/**
|
||||
* 版本号
|
||||
*/
|
||||
@Column("version")
|
||||
private String version;
|
||||
|
||||
/**
|
||||
* 单发链接
|
||||
*/
|
||||
@Column("single_msg_url")
|
||||
private String singleMsgUrl;
|
||||
|
||||
/**
|
||||
* 群发链接
|
||||
*/
|
||||
@Column("mass_msg_url")
|
||||
private String massMsgUrl;
|
||||
|
||||
/**
|
||||
* 签名ID
|
||||
*/
|
||||
@Column("signature_Id")
|
||||
private String signatureId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@Column("created_by")
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Column(value = "created_time",onInsertValue = "now()")
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@Column(value = "update_time",onUpdateValue = "now()")
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
@Column("update_by")
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
@Column(value = "is_deleted",isLogicDelete = true)
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("extra_json")
|
||||
private String extraJson;
|
||||
|
||||
/**
|
||||
* 服务名
|
||||
*/
|
||||
@Column("service")
|
||||
private String service;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,90 +1,90 @@
|
||||
package com.schisandra.system.infra.basic.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.mybatisflex.core.keygen.KeyGenerators;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 实体类
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-11 22:45:55
|
||||
*/
|
||||
@Data
|
||||
@Table("schisandra_sys_config")
|
||||
public class SchisandraSysConfig implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
@Id(keyType=KeyType.Generator, value= KeyGenerators.flexId)
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
@Column("config_name")
|
||||
private String configName;
|
||||
|
||||
/**
|
||||
* 参数键
|
||||
*/
|
||||
@Column("config_key")
|
||||
private String configKey;
|
||||
|
||||
/**
|
||||
* 参数值
|
||||
*/
|
||||
@Column("config_value")
|
||||
private String configValue;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
@Column("create_by")
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 系统内置(0是 1否)
|
||||
*/
|
||||
@Column("config_type")
|
||||
private Integer configType;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Column(value = "create_date",onInsertValue = "now()")
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
@Column("update_by")
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@Column(value = "update_date",onUpdateValue = "now()")
|
||||
private Date updateDate;
|
||||
|
||||
/**
|
||||
* 备注信息
|
||||
*/
|
||||
@Column("remarks")
|
||||
private String remarks;
|
||||
|
||||
/**
|
||||
* 是否删除 0未删除 1已删除
|
||||
*/
|
||||
@Column("is_deleted")
|
||||
private Integer isDeleted;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.infra.basic.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.mybatisflex.core.keygen.KeyGenerators;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 实体类
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-11 22:45:55
|
||||
*/
|
||||
@Data
|
||||
@Table("schisandra_sys_config")
|
||||
public class SchisandraSysConfig implements Serializable {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
@Id(keyType=KeyType.Generator, value= KeyGenerators.flexId)
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
@Column("config_name")
|
||||
private String configName;
|
||||
|
||||
/**
|
||||
* 参数键
|
||||
*/
|
||||
@Column("config_key")
|
||||
private String configKey;
|
||||
|
||||
/**
|
||||
* 参数值
|
||||
*/
|
||||
@Column("config_value")
|
||||
private String configValue;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
@Column("create_by")
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 系统内置(0是 1否)
|
||||
*/
|
||||
@Column("config_type")
|
||||
private Integer configType;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Column(value = "create_date",onInsertValue = "now()")
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
@Column("update_by")
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@Column(value = "update_date",onUpdateValue = "now()")
|
||||
private Date updateDate;
|
||||
|
||||
/**
|
||||
* 备注信息
|
||||
*/
|
||||
@Column("remarks")
|
||||
private String remarks;
|
||||
|
||||
/**
|
||||
* 是否删除 0未删除 1已删除
|
||||
*/
|
||||
@Column("is_deleted")
|
||||
private Integer isDeleted;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,146 +1,146 @@
|
||||
package com.schisandra.system.infra.basic.entity;
|
||||
|
||||
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.mybatisflex.core.keygen.KeyGenerators;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 实体类
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-12 14:21:42
|
||||
*/
|
||||
@Data
|
||||
@Table("schisandra_sys_log")
|
||||
public class SchisandraSysLog implements Serializable {
|
||||
|
||||
/**
|
||||
* 编号
|
||||
*/
|
||||
@Id(keyType=KeyType.Generator, value= KeyGenerators.flexId)
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 日志类型
|
||||
*/
|
||||
@Column("log_type")
|
||||
private String logType;
|
||||
|
||||
/**
|
||||
* 日志标题
|
||||
*/
|
||||
@Column("log_title")
|
||||
private String logTitle;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
@Column("create_by")
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
@Column("create_by_name")
|
||||
private String createByName;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Column(value = "create_date",onInsertValue = "now()")
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 请求URI
|
||||
*/
|
||||
@Column("request_uri")
|
||||
private String requestUri;
|
||||
|
||||
/**
|
||||
* 操作方式
|
||||
*/
|
||||
@Column("request_method")
|
||||
private String requestMethod;
|
||||
|
||||
/**
|
||||
* 操作提交的数据
|
||||
*/
|
||||
@Column("request_params")
|
||||
private String requestParams;
|
||||
|
||||
/**
|
||||
* 新旧数据比较结果
|
||||
*/
|
||||
@Column("diff_modify_data")
|
||||
private String diffModifyData;
|
||||
|
||||
/**
|
||||
* 业务主键
|
||||
*/
|
||||
@Column("biz_key")
|
||||
private String bizKey;
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
*/
|
||||
@Column("biz_type")
|
||||
private String bizType;
|
||||
|
||||
/**
|
||||
* 操作IP地址
|
||||
*/
|
||||
@Column("remote_addr")
|
||||
private String remoteAddr;
|
||||
|
||||
/**
|
||||
* 请求服务器地址
|
||||
*/
|
||||
@Column("server_addr")
|
||||
private String serverAddr;
|
||||
|
||||
/**
|
||||
* 是否异常
|
||||
*/
|
||||
@Column("is_exception")
|
||||
private String isException;
|
||||
|
||||
/**
|
||||
* 异常信息
|
||||
*/
|
||||
@Column("exception_info")
|
||||
private String exceptionInfo;
|
||||
|
||||
/**
|
||||
* 用户代理
|
||||
*/
|
||||
@Column("user_agent")
|
||||
private String userAgent;
|
||||
|
||||
/**
|
||||
* 设备名称/操作系统
|
||||
*/
|
||||
@Column("device_name")
|
||||
private String deviceName;
|
||||
|
||||
/**
|
||||
* 浏览器名称
|
||||
*/
|
||||
@Column("browser_name")
|
||||
private String browserName;
|
||||
|
||||
/**
|
||||
* 执行时间
|
||||
*/
|
||||
@Column("execute_time")
|
||||
private BigDecimal executeTime;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.infra.basic.entity;
|
||||
|
||||
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.mybatisflex.core.keygen.KeyGenerators;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 实体类
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-12 14:21:42
|
||||
*/
|
||||
@Data
|
||||
@Table("schisandra_sys_log")
|
||||
public class SchisandraSysLog implements Serializable {
|
||||
|
||||
/**
|
||||
* 编号
|
||||
*/
|
||||
@Id(keyType=KeyType.Generator, value= KeyGenerators.flexId)
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 日志类型
|
||||
*/
|
||||
@Column("log_type")
|
||||
private String logType;
|
||||
|
||||
/**
|
||||
* 日志标题
|
||||
*/
|
||||
@Column("log_title")
|
||||
private String logTitle;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
@Column("create_by")
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
@Column("create_by_name")
|
||||
private String createByName;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Column(value = "create_date",onInsertValue = "now()")
|
||||
private Date createDate;
|
||||
|
||||
/**
|
||||
* 请求URI
|
||||
*/
|
||||
@Column("request_uri")
|
||||
private String requestUri;
|
||||
|
||||
/**
|
||||
* 操作方式
|
||||
*/
|
||||
@Column("request_method")
|
||||
private String requestMethod;
|
||||
|
||||
/**
|
||||
* 操作提交的数据
|
||||
*/
|
||||
@Column("request_params")
|
||||
private String requestParams;
|
||||
|
||||
/**
|
||||
* 新旧数据比较结果
|
||||
*/
|
||||
@Column("diff_modify_data")
|
||||
private String diffModifyData;
|
||||
|
||||
/**
|
||||
* 业务主键
|
||||
*/
|
||||
@Column("biz_key")
|
||||
private String bizKey;
|
||||
|
||||
/**
|
||||
* 业务类型
|
||||
*/
|
||||
@Column("biz_type")
|
||||
private String bizType;
|
||||
|
||||
/**
|
||||
* 操作IP地址
|
||||
*/
|
||||
@Column("remote_addr")
|
||||
private String remoteAddr;
|
||||
|
||||
/**
|
||||
* 请求服务器地址
|
||||
*/
|
||||
@Column("server_addr")
|
||||
private String serverAddr;
|
||||
|
||||
/**
|
||||
* 是否异常
|
||||
*/
|
||||
@Column("is_exception")
|
||||
private String isException;
|
||||
|
||||
/**
|
||||
* 异常信息
|
||||
*/
|
||||
@Column("exception_info")
|
||||
private String exceptionInfo;
|
||||
|
||||
/**
|
||||
* 用户代理
|
||||
*/
|
||||
@Column("user_agent")
|
||||
private String userAgent;
|
||||
|
||||
/**
|
||||
* 设备名称/操作系统
|
||||
*/
|
||||
@Column("device_name")
|
||||
private String deviceName;
|
||||
|
||||
/**
|
||||
* 浏览器名称
|
||||
*/
|
||||
@Column("browser_name")
|
||||
private String browserName;
|
||||
|
||||
/**
|
||||
* 执行时间
|
||||
*/
|
||||
@Column("execute_time")
|
||||
private BigDecimal executeTime;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,120 +1,120 @@
|
||||
package com.schisandra.system.infra.basic.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.mybatisflex.core.keygen.KeyGenerators;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 实体类
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-25 23:08:26
|
||||
*/
|
||||
@Data
|
||||
@Table("schisandra_sys_oauth")
|
||||
public class SchisandraSysOauth implements Serializable {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Id(keyType=KeyType.Generator, value= KeyGenerators.flexId)
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
@Column("client_type")
|
||||
private String clientType;
|
||||
|
||||
/**
|
||||
* Client Id
|
||||
*/
|
||||
@Column("client_id")
|
||||
private String clientId;
|
||||
|
||||
/**
|
||||
* Client Secret
|
||||
*/
|
||||
@Column("client_secret")
|
||||
private String clientSecret;
|
||||
|
||||
/**
|
||||
* 应用回调地址
|
||||
*/
|
||||
@Column("redirect_uri")
|
||||
private String redirectUri;
|
||||
|
||||
/**
|
||||
* Key
|
||||
*/
|
||||
@Column("stack_overflow_Key")
|
||||
private String stackOverflowKey;
|
||||
|
||||
/**
|
||||
* 团队名
|
||||
*/
|
||||
@Column("domain_prefix")
|
||||
private String domainPrefix;
|
||||
|
||||
/**
|
||||
* 目录(租户) ID
|
||||
*/
|
||||
@Column("tenant_id")
|
||||
private String tenantId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("alipay_public_key")
|
||||
private String alipayPublicKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("agent_id")
|
||||
private String agentId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@Column("created_by")
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Column(value = "created_time",onInsertValue = "now()")
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@Column(value = "update_time",onUpdateValue = "now()")
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
@Column("update_by")
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
@Column("is_deleted")
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
@Column("status")
|
||||
private String status;
|
||||
|
||||
}
|
||||
|
||||
package com.schisandra.system.infra.basic.entity;
|
||||
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.KeyType;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import com.mybatisflex.core.keygen.KeyGenerators;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 实体类
|
||||
*
|
||||
* @author landaiqing
|
||||
* @since 2024-05-25 23:08:26
|
||||
*/
|
||||
@Data
|
||||
@Table("schisandra_sys_oauth")
|
||||
public class SchisandraSysOauth implements Serializable {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Id(keyType=KeyType.Generator, value= KeyGenerators.flexId)
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
@Column("client_type")
|
||||
private String clientType;
|
||||
|
||||
/**
|
||||
* Client Id
|
||||
*/
|
||||
@Column("client_id")
|
||||
private String clientId;
|
||||
|
||||
/**
|
||||
* Client Secret
|
||||
*/
|
||||
@Column("client_secret")
|
||||
private String clientSecret;
|
||||
|
||||
/**
|
||||
* 应用回调地址
|
||||
*/
|
||||
@Column("redirect_uri")
|
||||
private String redirectUri;
|
||||
|
||||
/**
|
||||
* Key
|
||||
*/
|
||||
@Column("stack_overflow_Key")
|
||||
private String stackOverflowKey;
|
||||
|
||||
/**
|
||||
* 团队名
|
||||
*/
|
||||
@Column("domain_prefix")
|
||||
private String domainPrefix;
|
||||
|
||||
/**
|
||||
* 目录(租户) ID
|
||||
*/
|
||||
@Column("tenant_id")
|
||||
private String tenantId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("alipay_public_key")
|
||||
private String alipayPublicKey;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Column("agent_id")
|
||||
private String agentId;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@Column("created_by")
|
||||
private String createdBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Column(value = "created_time",onInsertValue = "now()")
|
||||
private Date createdTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@Column(value = "update_time",onUpdateValue = "now()")
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
@Column("update_by")
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 是否删除 0 未删除 1已删除
|
||||
*/
|
||||
@Column("is_deleted")
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
@Column("status")
|
||||
private String status;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -1,51 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.schisandra.system.infra.basic.dao.SchisandraSmsConfigDao">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.schisandra.system.infra.basic.entity.SchisandraSmsConfig">
|
||||
<id column="id" jdbcType="INTEGER" property="id"/>
|
||||
<result column="config_id" jdbcType="VARCHAR" property="configId"/>
|
||||
<result column="request_url" jdbcType="VARCHAR" property="requestUrl"/>
|
||||
<result column="template_name" jdbcType="VARCHAR" property="templateName"/>
|
||||
<result column="action" jdbcType="VARCHAR" property="action"/>
|
||||
<result column="region" jdbcType="VARCHAR" property="region"/>
|
||||
<result column="access_key_id" jdbcType="VARCHAR" property="accessKeyId"/>
|
||||
<result column="access_key_secret" jdbcType="VARCHAR" property="accessKeySecret"/>
|
||||
<result column="supplier" jdbcType="VARCHAR" property="supplier"/>
|
||||
<result column="signature" jdbcType="VARCHAR" property="signature"/>
|
||||
<result column="sdk_app_id" jdbcType="VARCHAR" property="sdkAppId"/>
|
||||
<result column="template_id" jdbcType="VARCHAR" property="templateId"/>
|
||||
<result column="weight" jdbcType="INTEGER" property="weight"/>
|
||||
<result column="retry_interval" jdbcType="INTEGER" property="retryInterval"/>
|
||||
<result column="max_retries" jdbcType="INTEGER" property="maxRetries"/>
|
||||
<result column="maximum" jdbcType="BIGINT" property="maximum"/>
|
||||
<result column="base_url" jdbcType="VARCHAR" property="baseUrl"/>
|
||||
<result column="server_ip" jdbcType="VARCHAR" property="serverIp"/>
|
||||
<result column="server_port" jdbcType="INTEGER" property="serverPort"/>
|
||||
<result column="sender" jdbcType="VARCHAR" property="sender"/>
|
||||
<result column="status_call_back" jdbcType="VARCHAR" property="statusCallBack"/>
|
||||
<result column="url" jdbcType="VARCHAR" property="url"/>
|
||||
<result column="template_url" jdbcType="VARCHAR" property="templateUrl"/>
|
||||
<result column="code_url" jdbcType="VARCHAR" property="codeUrl"/>
|
||||
<result column="verify_url" jdbcType="VARCHAR" property="verifyUrl"/>
|
||||
<result column="need_up" jdbcType="VARCHAR" property="needUp"/>
|
||||
<result column="conn_timeout" jdbcType="INTEGER" property="connTimeout"/>
|
||||
<result column="is_simple" jdbcType="VARCHAR" property="isSimple"/>
|
||||
<result column="callback_url" jdbcType="VARCHAR" property="callbackUrl"/>
|
||||
<result column="mch_id" jdbcType="INTEGER" property="mchId"/>
|
||||
<result column="app_key" jdbcType="VARCHAR" property="appKey"/>
|
||||
<result column="app_id" jdbcType="INTEGER" property="appId"/>
|
||||
<result column="version" jdbcType="VARCHAR" property="version"/>
|
||||
<result column="single_msg_url" jdbcType="VARCHAR" property="singleMsgUrl"/>
|
||||
<result column="mass_msg_url" jdbcType="VARCHAR" property="massMsgUrl"/>
|
||||
<result column="signature_Id" jdbcType="VARCHAR" property="signatureId"/>
|
||||
<result column="created_by" jdbcType="VARCHAR" property="createdBy"/>
|
||||
<result column="created_time" jdbcType="TIMESTAMP" property="createdTime"/>
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
|
||||
<result column="update_by" jdbcType="VARCHAR" property="updateBy"/>
|
||||
<result column="is_deleted" jdbcType="INTEGER" property="isDeleted"/>
|
||||
<result column="extra_json" jdbcType="VARCHAR" property="extraJson"/>
|
||||
<result column="service" jdbcType="VARCHAR" property="service"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.schisandra.system.infra.basic.dao.SchisandraSmsConfigDao">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.schisandra.system.infra.basic.entity.SchisandraSmsConfig">
|
||||
<id column="id" jdbcType="VARCHAR" property="id"/>
|
||||
<result column="config_id" jdbcType="VARCHAR" property="configId"/>
|
||||
<result column="request_url" jdbcType="VARCHAR" property="requestUrl"/>
|
||||
<result column="template_name" jdbcType="VARCHAR" property="templateName"/>
|
||||
<result column="action" jdbcType="VARCHAR" property="action"/>
|
||||
<result column="region" jdbcType="VARCHAR" property="region"/>
|
||||
<result column="access_key_id" jdbcType="VARCHAR" property="accessKeyId"/>
|
||||
<result column="access_key_secret" jdbcType="VARCHAR" property="accessKeySecret"/>
|
||||
<result column="supplier" jdbcType="VARCHAR" property="supplier"/>
|
||||
<result column="signature" jdbcType="VARCHAR" property="signature"/>
|
||||
<result column="sdk_app_id" jdbcType="VARCHAR" property="sdkAppId"/>
|
||||
<result column="template_id" jdbcType="VARCHAR" property="templateId"/>
|
||||
<result column="weight" jdbcType="INTEGER" property="weight"/>
|
||||
<result column="retry_interval" jdbcType="INTEGER" property="retryInterval"/>
|
||||
<result column="max_retries" jdbcType="INTEGER" property="maxRetries"/>
|
||||
<result column="maximum" jdbcType="BIGINT" property="maximum"/>
|
||||
<result column="base_url" jdbcType="VARCHAR" property="baseUrl"/>
|
||||
<result column="server_ip" jdbcType="VARCHAR" property="serverIp"/>
|
||||
<result column="server_port" jdbcType="INTEGER" property="serverPort"/>
|
||||
<result column="sender" jdbcType="VARCHAR" property="sender"/>
|
||||
<result column="status_call_back" jdbcType="VARCHAR" property="statusCallBack"/>
|
||||
<result column="url" jdbcType="VARCHAR" property="url"/>
|
||||
<result column="template_url" jdbcType="VARCHAR" property="templateUrl"/>
|
||||
<result column="code_url" jdbcType="VARCHAR" property="codeUrl"/>
|
||||
<result column="verify_url" jdbcType="VARCHAR" property="verifyUrl"/>
|
||||
<result column="need_up" jdbcType="VARCHAR" property="needUp"/>
|
||||
<result column="conn_timeout" jdbcType="INTEGER" property="connTimeout"/>
|
||||
<result column="is_simple" jdbcType="VARCHAR" property="isSimple"/>
|
||||
<result column="callback_url" jdbcType="VARCHAR" property="callbackUrl"/>
|
||||
<result column="mch_id" jdbcType="INTEGER" property="mchId"/>
|
||||
<result column="app_key" jdbcType="VARCHAR" property="appKey"/>
|
||||
<result column="app_id" jdbcType="INTEGER" property="appId"/>
|
||||
<result column="version" jdbcType="VARCHAR" property="version"/>
|
||||
<result column="single_msg_url" jdbcType="VARCHAR" property="singleMsgUrl"/>
|
||||
<result column="mass_msg_url" jdbcType="VARCHAR" property="massMsgUrl"/>
|
||||
<result column="signature_Id" jdbcType="VARCHAR" property="signatureId"/>
|
||||
<result column="created_by" jdbcType="VARCHAR" property="createdBy"/>
|
||||
<result column="created_time" jdbcType="TIMESTAMP" property="createdTime"/>
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
|
||||
<result column="update_by" jdbcType="VARCHAR" property="updateBy"/>
|
||||
<result column="is_deleted" jdbcType="INTEGER" property="isDeleted"/>
|
||||
<result column="extra_json" jdbcType="VARCHAR" property="extraJson"/>
|
||||
<result column="service" jdbcType="VARCHAR" property="service"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.schisandra.system.infra.basic.dao.SchisandraSysConfigDao">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.schisandra.system.infra.basic.entity.SchisandraSysConfig">
|
||||
<id column="id" jdbcType="BIGINT" property="id"/>
|
||||
<result column="config_name" jdbcType="VARCHAR" property="configName"/>
|
||||
<result column="config_key" jdbcType="VARCHAR" property="configKey"/>
|
||||
<result column="config_value" jdbcType="VARCHAR" property="configValue"/>
|
||||
<result column="create_by" jdbcType="VARCHAR" property="createBy"/>
|
||||
<result column="config_type" jdbcType="INTEGER" property="configType"/>
|
||||
<result column="create_date" jdbcType="TIMESTAMP" property="createDate"/>
|
||||
<result column="update_by" jdbcType="VARCHAR" property="updateBy"/>
|
||||
<result column="update_date" jdbcType="TIMESTAMP" property="updateDate"/>
|
||||
<result column="remarks" jdbcType="VARCHAR" property="remarks"/>
|
||||
<result column="is_deleted" jdbcType="INTEGER" property="isDeleted"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.schisandra.system.infra.basic.dao.SchisandraSysConfigDao">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.schisandra.system.infra.basic.entity.SchisandraSysConfig">
|
||||
<id column="id" jdbcType="VARCHAR" property="id"/>
|
||||
<result column="config_name" jdbcType="VARCHAR" property="configName"/>
|
||||
<result column="config_key" jdbcType="VARCHAR" property="configKey"/>
|
||||
<result column="config_value" jdbcType="VARCHAR" property="configValue"/>
|
||||
<result column="create_by" jdbcType="VARCHAR" property="createBy"/>
|
||||
<result column="config_type" jdbcType="INTEGER" property="configType"/>
|
||||
<result column="create_date" jdbcType="TIMESTAMP" property="createDate"/>
|
||||
<result column="update_by" jdbcType="VARCHAR" property="updateBy"/>
|
||||
<result column="update_date" jdbcType="TIMESTAMP" property="updateDate"/>
|
||||
<result column="remarks" jdbcType="VARCHAR" property="remarks"/>
|
||||
<result column="is_deleted" jdbcType="INTEGER" property="isDeleted"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
|
||||
@@ -1,28 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.schisandra.system.infra.basic.dao.SchisandraSysLogDao">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.schisandra.system.infra.basic.entity.SchisandraSysLog">
|
||||
<id column="id" jdbcType="BIGINT" property="id"/>
|
||||
<result column="log_type" jdbcType="VARCHAR" property="logType"/>
|
||||
<result column="log_title" jdbcType="VARCHAR" property="logTitle"/>
|
||||
<result column="create_by" jdbcType="VARCHAR" property="createBy"/>
|
||||
<result column="create_by_name" jdbcType="VARCHAR" property="createByName"/>
|
||||
<result column="create_date" jdbcType="TIMESTAMP" property="createDate"/>
|
||||
<result column="request_uri" jdbcType="VARCHAR" property="requestUri"/>
|
||||
<result column="request_method" jdbcType="VARCHAR" property="requestMethod"/>
|
||||
<result column="request_params" jdbcType="VARCHAR" property="requestParams"/>
|
||||
<result column="diff_modify_data" jdbcType="VARCHAR" property="diffModifyData"/>
|
||||
<result column="biz_key" jdbcType="VARCHAR" property="bizKey"/>
|
||||
<result column="biz_type" jdbcType="VARCHAR" property="bizType"/>
|
||||
<result column="remote_addr" jdbcType="VARCHAR" property="remoteAddr"/>
|
||||
<result column="server_addr" jdbcType="VARCHAR" property="serverAddr"/>
|
||||
<result column="is_exception" jdbcType="CHAR" property="isException"/>
|
||||
<result column="exception_info" jdbcType="VARCHAR" property="exceptionInfo"/>
|
||||
<result column="user_agent" jdbcType="VARCHAR" property="userAgent"/>
|
||||
<result column="device_name" jdbcType="VARCHAR" property="deviceName"/>
|
||||
<result column="browser_name" jdbcType="VARCHAR" property="browserName"/>
|
||||
<result column="execute_time" jdbcType="DECIMAL" property="executeTime"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.schisandra.system.infra.basic.dao.SchisandraSysLogDao">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.schisandra.system.infra.basic.entity.SchisandraSysLog">
|
||||
<id column="id" jdbcType="VARCHAR" property="id"/>
|
||||
<result column="log_type" jdbcType="VARCHAR" property="logType"/>
|
||||
<result column="log_title" jdbcType="VARCHAR" property="logTitle"/>
|
||||
<result column="create_by" jdbcType="VARCHAR" property="createBy"/>
|
||||
<result column="create_by_name" jdbcType="VARCHAR" property="createByName"/>
|
||||
<result column="create_date" jdbcType="TIMESTAMP" property="createDate"/>
|
||||
<result column="request_uri" jdbcType="VARCHAR" property="requestUri"/>
|
||||
<result column="request_method" jdbcType="VARCHAR" property="requestMethod"/>
|
||||
<result column="request_params" jdbcType="VARCHAR" property="requestParams"/>
|
||||
<result column="diff_modify_data" jdbcType="VARCHAR" property="diffModifyData"/>
|
||||
<result column="biz_key" jdbcType="VARCHAR" property="bizKey"/>
|
||||
<result column="biz_type" jdbcType="VARCHAR" property="bizType"/>
|
||||
<result column="remote_addr" jdbcType="VARCHAR" property="remoteAddr"/>
|
||||
<result column="server_addr" jdbcType="VARCHAR" property="serverAddr"/>
|
||||
<result column="is_exception" jdbcType="CHAR" property="isException"/>
|
||||
<result column="exception_info" jdbcType="VARCHAR" property="exceptionInfo"/>
|
||||
<result column="user_agent" jdbcType="VARCHAR" property="userAgent"/>
|
||||
<result column="device_name" jdbcType="VARCHAR" property="deviceName"/>
|
||||
<result column="browser_name" jdbcType="VARCHAR" property="browserName"/>
|
||||
<result column="execute_time" jdbcType="DECIMAL" property="executeTime"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.schisandra.system.infra.basic.dao.SchisandraSysOauthDao">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.schisandra.system.infra.basic.entity.SchisandraSysOauth">
|
||||
<id column="id" jdbcType="BIGINT" property="id"/>
|
||||
<result column="client_type" jdbcType="VARCHAR" property="clientType"/>
|
||||
<result column="client_id" jdbcType="VARCHAR" property="clientId"/>
|
||||
<result column="client_secret" jdbcType="VARCHAR" property="clientSecret"/>
|
||||
<result column="redirect_uri" jdbcType="VARCHAR" property="redirectUri"/>
|
||||
<result column="stack_overflow_Key" jdbcType="VARCHAR" property="stackOverflowKey"/>
|
||||
<result column="domain_prefix" jdbcType="VARCHAR" property="domainPrefix"/>
|
||||
<result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
|
||||
<result column="alipay_public_key" jdbcType="VARCHAR" property="alipayPublicKey"/>
|
||||
<result column="agent_id" jdbcType="VARCHAR" property="agentId"/>
|
||||
<result column="created_by" jdbcType="VARCHAR" property="createdBy"/>
|
||||
<result column="created_time" jdbcType="TIMESTAMP" property="createdTime"/>
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
|
||||
<result column="update_by" jdbcType="VARCHAR" property="updateBy"/>
|
||||
<result column="is_deleted" jdbcType="INTEGER" property="isDeleted"/>
|
||||
<result column="status" jdbcType="VARCHAR" property="status"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.schisandra.system.infra.basic.dao.SchisandraSysOauthDao">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.schisandra.system.infra.basic.entity.SchisandraSysOauth">
|
||||
<id column="id" jdbcType="VARCHAR" property="id"/>
|
||||
<result column="client_type" jdbcType="VARCHAR" property="clientType"/>
|
||||
<result column="client_id" jdbcType="VARCHAR" property="clientId"/>
|
||||
<result column="client_secret" jdbcType="VARCHAR" property="clientSecret"/>
|
||||
<result column="redirect_uri" jdbcType="VARCHAR" property="redirectUri"/>
|
||||
<result column="stack_overflow_Key" jdbcType="VARCHAR" property="stackOverflowKey"/>
|
||||
<result column="domain_prefix" jdbcType="VARCHAR" property="domainPrefix"/>
|
||||
<result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
|
||||
<result column="alipay_public_key" jdbcType="VARCHAR" property="alipayPublicKey"/>
|
||||
<result column="agent_id" jdbcType="VARCHAR" property="agentId"/>
|
||||
<result column="created_by" jdbcType="VARCHAR" property="createdBy"/>
|
||||
<result column="created_time" jdbcType="TIMESTAMP" property="createdTime"/>
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime"/>
|
||||
<result column="update_by" jdbcType="VARCHAR" property="updateBy"/>
|
||||
<result column="is_deleted" jdbcType="INTEGER" property="isDeleted"/>
|
||||
<result column="status" jdbcType="VARCHAR" property="status"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user