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

Class CheliangEntity

boot/src/main/java/com/entity/CheliangEntity.java:27–287  ·  view source on GitHub ↗

车辆 @author @email

Source from the content-addressed store, hash-verified

25 * @email
26 */
27@TableName("cheliang")
28public class CheliangEntity<T> implements Serializable {
29 private static final long serialVersionUID = 1L;
30
31
32 public CheliangEntity() {
33
34 }
35
36 public CheliangEntity(T t) {
37 try {
38 BeanUtils.copyProperties(this, t);
39 } catch (IllegalAccessException | InvocationTargetException e) {
40 // TODO Auto-generated catch block
41 e.printStackTrace();
42 }
43 }
44
45
46 /**
47 * 主键
48 */
49 @TableId(type = IdType.AUTO)
50 @ColumnInfo(comment="主键",type="int(11)")
51 @TableField(value = "id")
52
53 private Integer id;
54
55
56 /**
57 * 车辆名称
58 */
59 @ColumnInfo(comment="车辆名称",type="varchar(200)")
60 @TableField(value = "cheliang_name")
61
62 private String cheliangName;
63
64
65 /**
66 * 车辆编号
67 */
68 @ColumnInfo(comment="车辆编号",type="varchar(200)")
69 @TableField(value = "cheliang_uuid_number")
70
71 private String cheliangUuidNumber;
72
73
74 /**
75 * 车辆照片
76 */
77 @ColumnInfo(comment="车辆照片",type="varchar(200)")
78 @TableField(value = "cheliang_photo")
79
80 private String cheliangPhoto;
81
82
83 /**
84 * 车辆牌照

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected