| package cc.mrbird.febs.mall.vo; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| @Data | 
| @ApiModel(value = "ApiMallAgentRecordVo", description = "返回参数类") | 
| public class ApiMallAgentRecordVo { | 
|     private Long id; | 
|     //申请人姓名 | 
|     @ApiModelProperty(value = "申请人姓名") | 
|     private String name; | 
|     //电话 | 
|     @ApiModelProperty(value = "电话") | 
|     private String phone; | 
|     //店铺名称(非必填) | 
|     @ApiModelProperty(value = "店铺名称(非必填)") | 
|     private String storeName; | 
|     //省 | 
|     @ApiModelProperty(value = "省") | 
|     private String province; | 
|     //市 | 
|     @ApiModelProperty(value = "市") | 
|     private String city; | 
|     //区、县 | 
|     @ApiModelProperty(value = "区、县") | 
|     private String area; | 
|     //详细地址 | 
|     @ApiModelProperty(value = "详细地址") | 
|     private String storeAddress; | 
|     //充值金额 | 
|     @ApiModelProperty(value = "充值金额") | 
|     private BigDecimal amount; | 
|     //代理等级 | 
|     @ApiModelProperty(value = "代理等级") | 
|     private String agentLevel; | 
|   | 
|     @ApiModelProperty(value = "代理等级名称") | 
|     private String agentLevelName; | 
|   | 
|     //状态 1::申请中 2:同意 3:拒绝 | 
|     @ApiModelProperty(value = "状态 1::申请中 2:同意 3:拒绝") | 
|     private Integer state; | 
| } |