xiaoyong931011
2023-02-07 3c5d0550633c0549ac948f4e6a1b015377fa293f
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
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.math.BigDecimal;
 
@Data
@TableName("mall_agent_record")
public class MallAgentRecord extends BaseEntity {
 
    private Long memberId;
 
    //申请人姓名
    private String name;
    //电话
    private String phone;
    //店铺名称(非必填)
    private String storeName;
    //省
    private String province;
    //市
    private String city;
    //区、县
    private String area;
    //详细地址
    private String storeAddress;
 
    //状态 1::申请中 2:同意 3:拒绝
    private Integer state;
    public static final Integer APPLY_ING = 1;
    public static final Integer APPLY_AGREE = 2;
    public static final Integer APPLY_DISAGREE = 3;
 
    @TableField(exist = false)
    private String memberName;
 
}