| package cc.mrbird.febs.mall.vo; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.List; | 
|   | 
| @Data | 
| @ApiModel(value = "AdminMallAddressInfoVo", description = "返回参数类") | 
| public class AdminMallAgentRecordVo { | 
|   | 
|     //省 | 
|     private String province; | 
|     //市 | 
|     private String city; | 
|     //用户昵称 | 
|     private String nickname; | 
|     //合伙人 | 
|     private String name; | 
|     //电话 | 
|     private String phone; | 
|     //下单总数 | 
|     private Integer orderCnt; | 
|     //金额 | 
|     private BigDecimal orderAmount; | 
|     //赠送金额 | 
|     private BigDecimal rechargeSendAmount; | 
|   | 
|     private List<String> cityList; | 
|   | 
| } |