Administrator
6 days ago e12b33379eccfeead532f677a99c7f9e41e34a0d
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
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;
    //充值金额
    private BigDecimal amount;
    //代理等级
    private String agentLevel;
 
    //状态 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;
    //下单时间
    @TableField(exist = false)
    private String orderTime;
 
    @TableField(exist = false)
    private String startTime;
 
    @TableField(exist = false)
    private String endTime;
 
    @TableField(exist = false)
    private String nickname;
 
    @TableField(exist = false)
    private String agentLevelName;
 
}