| 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; | 
|   | 
| } |