|
|
@@ -0,0 +1,46 @@
|
|
|
+package com.sckw.slope.detection.model.dto;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author lfdc
|
|
|
+ * @description saas字典表
|
|
|
+ * @date 2023-11-06 08:11:46
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class SystemDict implements Serializable {
|
|
|
+
|
|
|
+ private int id;
|
|
|
+ //类型
|
|
|
+ private String code;
|
|
|
+ //选项值
|
|
|
+ private String value;
|
|
|
+ //选项
|
|
|
+ private String label;
|
|
|
+ //描述
|
|
|
+ private String description;
|
|
|
+ //图标、文件等
|
|
|
+ private String url;
|
|
|
+ //排序(升序)
|
|
|
+ private int sort;
|
|
|
+ //父级编号
|
|
|
+ @JsonProperty("parent_id")
|
|
|
+ private String parentId;
|
|
|
+ //备注信息
|
|
|
+ private String remark;
|
|
|
+ //类型
|
|
|
+ private int status;
|
|
|
+ //新增时间
|
|
|
+ @JsonProperty("create_time")
|
|
|
+ private LocalDateTime createTime;
|
|
|
+ //修改时间
|
|
|
+ @JsonProperty("update_time")
|
|
|
+ private LocalDateTime updateTime;
|
|
|
+ //删除时间
|
|
|
+ @JsonProperty("delete_time")
|
|
|
+ private int deleteTime;
|
|
|
+}
|