收货地址 后端返回视图实体辅助类 (通常后端关联的表或者自定义的字段需要返回使用)
| 18 | * (通常后端关联的表或者自定义的字段需要返回使用) |
| 19 | */ |
| 20 | @TableName("address") |
| 21 | public class AddressView extends AddressEntity implements Serializable { |
| 22 | private static final long serialVersionUID = 1L; |
| 23 | |
| 24 | //当前表 |
| 25 | /** |
| 26 | * 是否默认地址的值 |
| 27 | */ |
| 28 | @ColumnInfo(comment="是否默认地址的字典表值",type="varchar(200)") |
| 29 | private String isdefaultValue; |
| 30 | |
| 31 | //级联表 用户 |
| 32 | /** |
| 33 | * 用户编号 |
| 34 | */ |
| 35 | |
| 36 | @ColumnInfo(comment="用户编号",type="varchar(200)") |
| 37 | private String yonghuUuidNumber; |
| 38 | /** |
| 39 | * 用户姓名 |
| 40 | */ |
| 41 | |
| 42 | @ColumnInfo(comment="用户姓名",type="varchar(200)") |
| 43 | private String yonghuName; |
| 44 | /** |
| 45 | * 用户手机号 |
| 46 | */ |
| 47 | |
| 48 | @ColumnInfo(comment="用户手机号",type="varchar(200)") |
| 49 | private String yonghuPhone; |
| 50 | /** |
| 51 | * 用户身份证号 |
| 52 | */ |
| 53 | |
| 54 | @ColumnInfo(comment="用户身份证号",type="varchar(200)") |
| 55 | private String yonghuIdNumber; |
| 56 | /** |
| 57 | * 用户头像 |
| 58 | */ |
| 59 | |
| 60 | @ColumnInfo(comment="用户头像",type="varchar(200)") |
| 61 | private String yonghuPhoto; |
| 62 | /** |
| 63 | * 余额 |
| 64 | */ |
| 65 | @ColumnInfo(comment="余额",type="decimal(10,2)") |
| 66 | private Double newMoney; |
| 67 | /** |
| 68 | * 用户邮箱 |
| 69 | */ |
| 70 | |
| 71 | @ColumnInfo(comment="用户邮箱",type="varchar(200)") |
| 72 | private String yonghuEmail; |
| 73 | |
| 74 | |
| 75 | |
| 76 | public AddressView() { |
| 77 |
nothing calls this directly
no outgoing calls
no test coverage detected