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

Class CheliangModel

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

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

Source from the content-addressed store, hash-verified

16 * 取自ModelAndView 的model名称
17 */
18public class CheliangModel 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 cheliangName;
34
35
36 /**
37 * 车辆编号
38 */
39 private String cheliangUuidNumber;
40
41
42 /**
43 * 车辆照片
44 */
45 private String cheliangPhoto;
46
47
48 /**
49 * 车辆牌照
50 */
51 private String cheliangPaizhao;
52
53
54 /**
55 * 车辆类型
56 */
57 private Integer cheliangTypes;
58
59
60 /**
61 * 车辆介绍
62 */
63 private String cheliangContent;
64
65
66 /**
67 * 逻辑删除
68 */
69 private Integer cheliangDelete;
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