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

Class CangkuModel

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

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

Source from the content-addressed store, hash-verified

16 * 取自ModelAndView 的model名称
17 */
18public class CangkuModel implements Serializable {
19 private static final long serialVersionUID = 1L;
20
21
22
23
24 /**
25 * 主键
26 */
27 private Integer id;
28
29
30 /**
31 * 仓库名称
32 */
33 private String cangkuName;
34
35
36 /**
37 * 仓库编号
38 */
39 private String cangkuUuidNumber;
40
41
42 /**
43 * 仓库照片
44 */
45 private String cangkuPhoto;
46
47
48 /**
49 * 仓库地点
50 */
51 private String cangkuAddress;
52
53
54 /**
55 * 仓库类型
56 */
57 private Integer cangkuTypes;
58
59
60 /**
61 * 仓库介绍
62 */
63 private String cangkuContent;
64
65
66 /**
67 * 逻辑删除
68 */
69 private Integer cangkuDelete;
70
71
72 /**
73 * 录入时间
74 */
75 @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected