feat(domain): 添加业务实体字段支持
- 在 BizSendJob 中添加 groupType 字段用于分组类型标识 - 在 BizSendTemplateItemVO 中添加 enabled 字段用于状态控制 - 在 SendJobLastSuccessVO 中添加 isFromHistory 字段用于历史记录标识
This commit is contained in:
@@ -53,5 +53,8 @@ public class BizSendJob extends BaseEntity {
|
|||||||
private String searchValue;
|
private String searchValue;
|
||||||
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
@com.baomidou.mybatisplus.annotation.TableField(exist = false)
|
||||||
private java.util.Map<String,Object> params;
|
private java.util.Map<String,Object> params;
|
||||||
|
|
||||||
|
// GroupType
|
||||||
|
private String groupType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,5 +15,8 @@ public class BizSendTemplateItemVO {
|
|||||||
private String groupNameEn;
|
private String groupNameEn;
|
||||||
private String address;
|
private String address;
|
||||||
private String defaultValueRaw;
|
private String defaultValueRaw;
|
||||||
|
|
||||||
|
private Boolean enabled;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -19,5 +19,8 @@ public class SendJobLastSuccessVO {
|
|||||||
|
|
||||||
/** 最近一次成功的jobId(可选) */
|
/** 最近一次成功的jobId(可选) */
|
||||||
private Integer jobId;
|
private Integer jobId;
|
||||||
|
|
||||||
|
//IsFromHistory
|
||||||
|
private Boolean isFromHistory;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user