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

Class HuowuModel

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

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

Source from the content-addressed store, hash-verified

16 * 取自ModelAndView 的model名称
17 */
18public class HuowuModel 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 Integer shangpinOrderId;
34
35
36 /**
37 * 货物名称
38 */
39 private String huowuName;
40
41
42 /**
43 * 货物编号
44 */
45 private String huowuUuidNumber;
46
47
48 /**
49 * 货物类型
50 */
51 private Integer huowuTypes;
52
53
54 /**
55 * 货物介绍
56 */
57 private String huowuContent;
58
59
60 /**
61 * 逻辑删除
62 */
63 private Integer huowuDelete;
64
65
66 /**
67 * 录入时间
68 */
69 @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
70 @DateTimeFormat
71 private Date insertTime;
72
73
74 /**
75 * 创建时间 show3 listShow

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected