新增预警页面
This commit is contained in:
@@ -2,6 +2,7 @@ package com.jeesite.modules.biz.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
import com.jeesite.common.mybatis.annotation.JoinTable;
|
||||
import com.jeesite.common.mybatis.annotation.JoinTable.Type;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
@@ -20,70 +21,73 @@ import java.io.Serial;
|
||||
|
||||
/**
|
||||
* 系统信息Entity
|
||||
*
|
||||
* @author gaoxq
|
||||
* @version 2025-11-26
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="biz_quick_login", alias="a", label="系统信息信息", columns={
|
||||
@Column(name="create_time", attrName="createTime", label="创建时间", isUpdate=false, isUpdateForce=true),
|
||||
@Column(name="id", attrName="id", label="自增主键", isPK=true),
|
||||
@Column(name="system_name", attrName="systemName", label="系统名称", queryType=QueryType.LIKE),
|
||||
@Column(name="homepage_url", attrName="homepageUrl", label="首页地址", isQuery=false),
|
||||
@Column(name="icon_class", attrName="iconClass", label="图标类名", isQuery=false),
|
||||
@Column(name="icon_color", attrName="iconColor", label="图标颜色", isQuery=false),
|
||||
@Column(name="sort_order", attrName="sortOrder", label="排序序号", isQuery=false),
|
||||
@Column(name="bg_color", attrName="bgColor", label="图标背景色", isQuery=false),
|
||||
@Column(name="mask_color", attrName="maskColor", label="悬浮遮罩色", isQuery=false),
|
||||
@Column(name="is_enabled", attrName="isEnabled", label="是否启用", isQuery=false),
|
||||
@Column(name="update_time", attrName="updateTime", label="更新时间", isQuery=false, isUpdateForce=true),
|
||||
@Column(name="f_tenant_id", attrName="ftenantId", label="租户id", isUpdate=false, isQuery=false),
|
||||
@Column(name="f_flow_id", attrName="fflowId", label="流程id", isUpdate=false, isQuery=false),
|
||||
@Column(name="f_flow_task_id", attrName="fflowTaskId", label="流程任务主键", isUpdate=false, isQuery=false),
|
||||
@Column(name="f_flow_state", attrName="fflowState", label="流程任务状态", isUpdate=false, isQuery=false, isUpdateForce=true),
|
||||
}, orderBy="a.create_time DESC"
|
||||
@Table(name = "biz_quick_login", alias = "a", label = "系统信息信息", columns = {
|
||||
@Column(name = "create_time", attrName = "createTime", label = "创建时间", isUpdate = false, isUpdateForce = true),
|
||||
@Column(name = "id", attrName = "id", label = "自增主键", isPK = true),
|
||||
@Column(name = "system_name", attrName = "systemName", label = "系统名称", queryType = QueryType.LIKE),
|
||||
@Column(name = "system_type", attrName = "systemType", label = "系统类型"),
|
||||
@Column(name = "homepage_url", attrName = "homepageUrl", label = "首页地址", isQuery = false),
|
||||
@Column(name = "icon_class", attrName = "iconClass", label = "图标类名", isQuery = false),
|
||||
@Column(name = "icon_color", attrName = "iconColor", label = "图标颜色", isQuery = false),
|
||||
@Column(name = "sort_order", attrName = "sortOrder", label = "排序序号", isQuery = false),
|
||||
@Column(name = "bg_color", attrName = "bgColor", label = "图标背景色", isQuery = false),
|
||||
@Column(name = "mask_color", attrName = "maskColor", label = "悬浮遮罩色", isQuery = false),
|
||||
@Column(name = "is_enabled", attrName = "isEnabled", label = "是否启用", isQuery = false),
|
||||
@Column(name = "update_time", attrName = "updateTime", label = "更新时间", isQuery = false, isUpdateForce = true),
|
||||
@Column(name = "f_tenant_id", attrName = "ftenantId", label = "租户id", isUpdate = false, isQuery = false),
|
||||
@Column(name = "f_flow_id", attrName = "fflowId", label = "流程id", isUpdate = false, isQuery = false),
|
||||
@Column(name = "f_flow_task_id", attrName = "fflowTaskId", label = "流程任务主键", isUpdate = false, isQuery = false),
|
||||
@Column(name = "f_flow_state", attrName = "fflowState", label = "流程任务状态", isUpdate = false, isQuery = false, isUpdateForce = true),
|
||||
}, orderBy = "a.create_time DESC"
|
||||
)
|
||||
@Data
|
||||
public class BizQuickLogin extends DataEntity<BizQuickLogin> implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
private Date createTime; // 创建时间
|
||||
private String systemName; // 系统名称
|
||||
private String homepageUrl; // 首页地址
|
||||
private String iconClass; // 图标类名
|
||||
private String iconColor; // 图标颜色
|
||||
private Long sortOrder; // 排序序号
|
||||
private String bgColor; // 图标背景色
|
||||
private String maskColor; // 悬浮遮罩色
|
||||
private Long isEnabled; // 是否启用
|
||||
private Date updateTime; // 更新时间
|
||||
private String ftenantId; // 租户id
|
||||
private String fflowId; // 流程id
|
||||
private String fflowTaskId; // 流程任务主键
|
||||
private Integer fflowState; // 流程任务状态
|
||||
|
||||
public BizQuickLogin() {
|
||||
this(null);
|
||||
}
|
||||
|
||||
public BizQuickLogin(String id){
|
||||
super(id);
|
||||
}
|
||||
|
||||
public Date getCreateTime_gte() {
|
||||
return sqlMap.getWhere().getValue("create_time", QueryType.GTE);
|
||||
}
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
private Date createTime; // 创建时间
|
||||
private String systemName; // 系统名称
|
||||
private String systemType; // 系统类型
|
||||
private String homepageUrl; // 首页地址
|
||||
private String iconClass; // 图标类名
|
||||
private String iconColor; // 图标颜色
|
||||
private Long sortOrder; // 排序序号
|
||||
private String bgColor; // 图标背景色
|
||||
private String maskColor; // 悬浮遮罩色
|
||||
private Long isEnabled; // 是否启用
|
||||
private Date updateTime; // 更新时间
|
||||
private String ftenantId; // 租户id
|
||||
private String fflowId; // 流程id
|
||||
private String fflowTaskId; // 流程任务主键
|
||||
private Integer fflowState; // 流程任务状态
|
||||
|
||||
public void setCreateTime_gte(Date createTime) {
|
||||
sqlMap.getWhere().and("create_time", QueryType.GTE, createTime);
|
||||
}
|
||||
|
||||
public Date getCreateTime_lte() {
|
||||
return sqlMap.getWhere().getValue("create_time", QueryType.LTE);
|
||||
}
|
||||
public BizQuickLogin() {
|
||||
this(null);
|
||||
}
|
||||
|
||||
public BizQuickLogin(String id) {
|
||||
super(id);
|
||||
}
|
||||
|
||||
public Date getCreateTime_gte() {
|
||||
return sqlMap.getWhere().getValue("create_time", QueryType.GTE);
|
||||
}
|
||||
|
||||
public void setCreateTime_gte(Date createTime) {
|
||||
sqlMap.getWhere().and("create_time", QueryType.GTE, createTime);
|
||||
}
|
||||
|
||||
public Date getCreateTime_lte() {
|
||||
return sqlMap.getWhere().getValue("create_time", QueryType.LTE);
|
||||
}
|
||||
|
||||
public void setCreateTime_lte(Date createTime) {
|
||||
sqlMap.getWhere().and("create_time", QueryType.LTE, createTime);
|
||||
}
|
||||
|
||||
public void setCreateTime_lte(Date createTime) {
|
||||
sqlMap.getWhere().and("create_time", QueryType.LTE, createTime);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user