add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.iotechn.unimall.data.domain;
 
/*
@author kbq
@date  2019/7/4 - 21:29
*/
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.dobbinsoft.fw.core.annotation.doc.ApiEntity;
import com.dobbinsoft.fw.core.annotation.doc.ApiField;
import com.dobbinsoft.fw.support.domain.SuperDO;
import lombok.Data;
 
@Data
@ApiEntity(description = "地址领域模型")
@TableName("unimall_address")
public class AddressDO extends SuperDO {
 
    @ApiField(description = "省份")
    private String province;
 
    @ApiField(description = "城市")
    private String city;
 
    @ApiField(description = "行政区/镇")
    private String county;
 
    @ApiField(description = "详细地址")
    private String address;
 
    @ApiField(description = "是否是默认地址")
    private Integer defaultAddress;
 
    @ApiField(description = "所属用户ID")
    private Long userId;
 
    @ApiField(description = "签收手机号")
    private String phone;
 
    @ApiField(description = "签收人姓名")
    private String consignee;
 
 
 
}