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

Class CangkuEntity

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

仓库 @author @email

Source from the content-addressed store, hash-verified

25 * @email
26 */
27@TableName("cangku")
28public class CangkuEntity<T> implements Serializable {
29 private static final long serialVersionUID = 1L;
30
31
32 public CangkuEntity() {
33
34 }
35
36 public CangkuEntity(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 = "cangku_name")
61
62 private String cangkuName;
63
64
65 /**
66 * 仓库编号
67 */
68 @ColumnInfo(comment="仓库编号",type="varchar(200)")
69 @TableField(value = "cangku_uuid_number")
70
71 private String cangkuUuidNumber;
72
73
74 /**
75 * 仓库照片
76 */
77 @ColumnInfo(comment="仓库照片",type="varchar(200)")
78 @TableField(value = "cangku_photo")
79
80 private String cangkuPhoto;
81
82
83 /**
84 * 仓库地点

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected