xiaoyong931011
2022-09-23 19ab08f041d6773f22594ed393105c623e09f543
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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;
 
/**
 * @author wzy
 * @date 2022-05-12
 **/
@Data
@TableName("mall_shop_apply")
public class MallShopApply extends BaseEntity {
 
    public static final Integer APPLY_AGREE = 1;
    public static final Integer APPLY_ING = 2;
    public static final Integer APPLY_DISAGREE = 3;
 
    private Long memberId;
 
    /**
     * 姓名
     */
    private String name;
 
    /**
     * 联系方式
     */
    private String phone;
 
    /**
     * 身份证
     */
    private String idcard;
 
    /**
     * 营业执照
     */
    private String businessLicense;
 
    /**
     * 经营场地
     */
    private String saleArea;
 
    /**
     * 1-通过 2-申请中 3-驳回
     */
    private Integer status;
 
    private String longitude;
 
    private String latitude;
 
    private String shopName;
 
    private String address;
 
    @TableField(exist = false)
    private String vipName;
 
    @TableField(exist = false)
    private String inviteId;
}