|
|
@@ -0,0 +1,178 @@
|
|
|
+package com.dk.mdm.model.pojo.mst;
|
|
|
+
|
|
|
+import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
+import com.baomidou.mybatisplus.annotation.*;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+import com.dk.common.infrastructure.annotaiton.ExportTitle;
|
|
|
+import com.dk.common.infrastructure.handler.*;
|
|
|
+import com.dk.common.model.pojo.PageInfo;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 用户表格设置
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@AllArgsConstructor
|
|
|
+@NoArgsConstructor
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Accessors(chain = true)
|
|
|
+@ExportTitle("用户表格设置")
|
|
|
+@TableName(value = "t_mst_table_set", autoResultMap = true,schema = "dkic_b")
|
|
|
+@ApiModel(value="实体类:用户表格设置", description="表名:t_mst_table_set")
|
|
|
+public class TableSet extends PageInfo<TableSet> implements Serializable {
|
|
|
+
|
|
|
+ /*
|
|
|
+ * 数据库字段
|
|
|
+ */
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户ID
|
|
|
+ */
|
|
|
+ @Excel(name = "用户ID")
|
|
|
+ @ApiModelProperty(value = "用户ID")
|
|
|
+ @TableField(typeHandler = UuidTypeHandler.class)
|
|
|
+ private String staffId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 页面编码
|
|
|
+ */
|
|
|
+ @Excel(name = "页面编码")
|
|
|
+ @ApiModelProperty(value = "页面编码")
|
|
|
+ private String code;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 表格名称
|
|
|
+ */
|
|
|
+ @Excel(name = "表格名称")
|
|
|
+ @ApiModelProperty(value = "表格名称")
|
|
|
+ private String tableRef;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 表格列 (记录显示列和隐藏列)
|
|
|
+ */
|
|
|
+ @Excel(name = "表格列 (记录显示列和隐藏列)")
|
|
|
+ @ApiModelProperty(value = "表格列 (记录显示列和隐藏列)")
|
|
|
+ @TableField(typeHandler = JsonTypeHandler.class)
|
|
|
+ private JSONArray columns;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ @Excel(name = "备注")
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
+ private String remarks;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 有效标识 (1:正常 0:停用)
|
|
|
+ */
|
|
|
+ @Excel(name = "有效标识 (1:正常 0:停用)")
|
|
|
+ @ApiModelProperty(value = "有效标识 (1:正常 0:停用)")
|
|
|
+ private Boolean flgValid;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 企业ID
|
|
|
+ */
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ @Excel(name = "企业ID")
|
|
|
+ @ApiModelProperty(value = "企业ID")
|
|
|
+ private Integer cpId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间 (触发器自动处理)
|
|
|
+ */
|
|
|
+ @Excel(name = "创建时间 (触发器自动处理)", format = "yyyy-MM-dd HH:mm:ss", width = 20)
|
|
|
+ @ApiModelProperty(value = "创建时间 (触发器自动处理)")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @TableField(typeHandler = TimestampTypeHandler.class)
|
|
|
+ private LocalDateTime opCreateTime;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建用户 (触发器自动处理)
|
|
|
+ */
|
|
|
+ @Excel(name = "创建用户 (触发器自动处理)")
|
|
|
+ @ApiModelProperty(value = "创建用户 (触发器自动处理)")
|
|
|
+ @TableField(typeHandler = UuidTypeHandler.class)
|
|
|
+ private String opCreateUserId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改时间 (触发器自动处理)
|
|
|
+ */
|
|
|
+ @Excel(name = "修改时间 (触发器自动处理)", format = "yyyy-MM-dd HH:mm:ss", width = 20)
|
|
|
+ @ApiModelProperty(value = "修改时间 (触发器自动处理)")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @TableField(typeHandler = TimestampTypeHandler.class)
|
|
|
+ private LocalDateTime opUpdateTime;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改用户 (触发器自动处理)
|
|
|
+ */
|
|
|
+ @Excel(name = "修改用户 (触发器自动处理)")
|
|
|
+ @ApiModelProperty(value = "修改用户 (触发器自动处理)")
|
|
|
+ @TableField(typeHandler = UuidTypeHandler.class)
|
|
|
+ private String opUpdateUserId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据操作应用 (触发器自动处理)
|
|
|
+ */
|
|
|
+ @Excel(name = "数据操作应用 (触发器自动处理)")
|
|
|
+ @ApiModelProperty(value = "数据操作应用 (触发器自动处理)")
|
|
|
+ private String opAppCode;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据时间戳 (触发器自动处理)
|
|
|
+ */
|
|
|
+ @Excel(name = "数据时间戳 (触发器自动处理)")
|
|
|
+ @ApiModelProperty(value = "数据时间戳 (触发器自动处理)")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @TableField(typeHandler = TimestampTypeHandler.class)
|
|
|
+ private LocalDateTime opTimestamp;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据操作数据库用户 (触发器自动处理)
|
|
|
+ */
|
|
|
+ @Excel(name = "数据操作数据库用户 (触发器自动处理)")
|
|
|
+ @ApiModelProperty(value = "数据操作数据库用户 (触发器自动处理)")
|
|
|
+ private String opDbUser;
|
|
|
+
|
|
|
+
|
|
|
+ /*
|
|
|
+ * 相关属性
|
|
|
+ * @TableField(exist = false)
|
|
|
+ */
|
|
|
+
|
|
|
+ /*
|
|
|
+ * 关联属性 + 查询条件
|
|
|
+ * @TableField(exist = false)
|
|
|
+ */
|
|
|
+
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+}
|