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
| package com.dsh.guns.modular.system.model;
|
| import lombok.Data;
|
| @Data
| public class HuiminCardStoreQuery {
| /**
| * 省份编号
| */
| private String provinceCode;
|
| /**
| * 市编号
| */
| private String cityCode;
|
| /**
| * 运营商Id
| */
| private Integer operatorId;
|
| /**
| * 门店名称
| */
| private String storeName;
|
| private String storeIds;
|
| }
|
|