MCPcopy Create free account
hub / github.com/LisenCoding/cangku / DictionaryModel

Class DictionaryModel

boot/src/main/java/com/entity/model/DictionaryModel.java:18–187  ·  view source on GitHub ↗

字典 接收传参的实体类 (实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 取自ModelAndView 的model名称

Source from the content-addressed store, hash-verified

16 * 取自ModelAndView 的model名称
17 */
18public class DictionaryModel implements Serializable {
19 private static final long serialVersionUID = 1L;
20
21
22
23
24 /**
25 * 主键
26 */
27 private Long id;
28
29
30 /**
31 * 字段
32 */
33 private String dicCode;
34
35
36 /**
37 * 字段名
38 */
39 private String dicName;
40
41
42 /**
43 * 编码
44 */
45 private Integer codeIndex;
46
47
48 /**
49 * 编码名字
50 */
51 private String indexName;
52
53
54 /**
55 * 父字段id
56 */
57 private Integer superId;
58
59
60 /**
61 * 备注
62 */
63 private String beizhu;
64
65
66 /**
67 * 创建时间
68 */
69 @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
70 @DateTimeFormat
71 private Date createTime;
72
73
74 /**
75 * 获取:主键

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected