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

Class AddressVO

boot/src/main/java/com/entity/vo/AddressVO.java:17–236  ·  view source on GitHub ↗

收货地址 手机端接口返回实体辅助类 (主要作用去除一些不必要的字段)

Source from the content-addressed store, hash-verified

15 * (主要作用去除一些不必要的字段)
16 */
17@TableName("address")
18public class AddressVO implements Serializable {
19 private static final long serialVersionUID = 1L;
20
21
22 /**
23 * 主键
24 */
25
26 @TableField(value = "id")
27 private Integer id;
28
29
30 /**
31 * 创建用户
32 */
33
34 @TableField(value = "yonghu_id")
35 private Integer yonghuId;
36
37
38 /**
39 * 收货人
40 */
41
42 @TableField(value = "address_name")
43 private String addressName;
44
45
46 /**
47 * 电话
48 */
49
50 @TableField(value = "address_phone")
51 private String addressPhone;
52
53
54 /**
55 * 地址
56 */
57
58 @TableField(value = "address_dizhi")
59 private String addressDizhi;
60
61
62 /**
63 * 是否默认地址
64 */
65
66 @TableField(value = "isdefault_types")
67 private Integer isdefaultTypes;
68
69
70 /**
71 * 添加时间
72 */
73 @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
74 @DateTimeFormat

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected