puzhibing
2023-10-08 22199bbdda579861736420fe26c2873ab0f5d21c
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
package com.sinata.rest.modular.mall.controller.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * <p>
 * 商城-用户代理区域
 * </p>
 *
 * @ClassName com.sinata.rest.modular.mall.controller.vo.VoUserBankDetail
 * @Description 商城-用户代理区域
 * @Author sl
 * @Date 2023/3/18 15:36
 */
@Data
@ApiModel("商城-用户代理区域")
public class VoUserAgencyArea extends BaseResponseVo {
 
    @ApiModelProperty(value = "省")
    private String agentProvince;
 
    @ApiModelProperty(value = "市")
    private String agentCity;
 
    @ApiModelProperty(value = "区")
    private String agentCounty;
 
    @ApiModelProperty(value = "代理福利说明")
    private String text;
 
}