xiaoyong931011
2022-07-27 3280d1bd977e8fb5c9c60e615612fabb7b99c3e3
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
46
47
48
49
package cc.mrbird.febs.mall.entity;
 
 
import cc.mrbird.febs.common.entity.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
//团长信息表
@Data
@TableName("mall_team_leader")
public class MallTeamLeader extends BaseEntity {
 
    //用户ID
    private Long memberId;
    //申请状态 1:审核通过 2:审核不通过 3:申请中
    private Integer state;
    public static final Integer STATE_YES = 1;
    public static final Integer STATE_NO = 2;
    public static final Integer STATE_ING = 3;
    //团长姓名
    private String name;
    //手机号码
    private String phone;
    //团长特征码
    private String uniqueCode;
    //自提点照片
    private String addressPic;
    //省
    private String province;
    //市
    private String city;
    //区
    private String township;
    //小区名称
    private String addressArea;
    //详细地址
    private String detailAddress;
    //经度
    private Double longitude;
    //纬度
    private Double latitude;
 
    @TableField(exist = false)
    private Double distance;
 
}