修复bug
This commit is contained in:
@@ -47,5 +47,11 @@ public class BizSendJob extends BaseEntity {
|
|||||||
|
|
||||||
/** 操作员姓名 */
|
/** 操作员姓名 */
|
||||||
private String operatorName;
|
private String operatorName;
|
||||||
|
|
||||||
|
// 解决 BaseEntity 字段导致的未知列问题
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
|
private String searchValue;
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
|
private java.util.Map<String,Object> params;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,5 +36,11 @@ public class BizSendJobGroup extends BaseEntity {
|
|||||||
|
|
||||||
/** 分组状态: PENDING, IN_PROGRESS, COMPLETED, FAILED */
|
/** 分组状态: PENDING, IN_PROGRESS, COMPLETED, FAILED */
|
||||||
private String status;
|
private String status;
|
||||||
|
|
||||||
|
// 解决 BaseEntity 字段导致的未知列问题
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
|
private String searchValue;
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
|
private java.util.Map<String,Object> params;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -54,5 +54,11 @@ public class BizSendJobItem extends BaseEntity {
|
|||||||
|
|
||||||
/** 重试次数 */
|
/** 重试次数 */
|
||||||
private Integer retryCount;
|
private Integer retryCount;
|
||||||
|
|
||||||
|
// 解决 BaseEntity 字段导致的未知列问题
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
|
private String searchValue;
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
|
private java.util.Map<String,Object> params;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,12 @@ public class BizSendTemplate extends BaseEntity {
|
|||||||
@TableId(type = IdType.AUTO)
|
@TableId(type = IdType.AUTO)
|
||||||
private Integer templateId;
|
private Integer templateId;
|
||||||
|
|
||||||
|
// 解决 MyBatis-Plus 父类字段映射导致的 search_value 报错
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
|
private String searchValue;
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
|
private java.util.Map<String,Object> params;
|
||||||
|
|
||||||
/** 模板编码 */
|
/** 模板编码 */
|
||||||
private String templateCode;
|
private String templateCode;
|
||||||
|
|
||||||
|
|||||||
@@ -39,5 +39,11 @@ public class BizSendTemplateItem extends BaseEntity {
|
|||||||
|
|
||||||
/** 是否启用 */
|
/** 是否启用 */
|
||||||
private Integer enabled;
|
private Integer enabled;
|
||||||
|
|
||||||
|
// 解决 BaseEntity 字段导致的未知列问题
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
|
private String searchValue;
|
||||||
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
|
private java.util.Map<String,Object> params;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import java.util.Map;
|
|||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
/**
|
/**
|
||||||
* Entity基类
|
* Entity基类
|
||||||
*
|
*
|
||||||
@@ -19,6 +19,7 @@ public class BaseEntity implements Serializable
|
|||||||
|
|
||||||
/** 搜索值 */
|
/** 搜索值 */
|
||||||
@JsonIgnore
|
@JsonIgnore
|
||||||
|
@TableField(exist = false)
|
||||||
private String searchValue;
|
private String searchValue;
|
||||||
|
|
||||||
/** 创建者 */
|
/** 创建者 */
|
||||||
|
|||||||
Reference in New Issue
Block a user