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
34
35
| package com.xzx.gc.model.admin;
|
| import com.xzx.gc.model.admin.baseModel.BaseModel;
| import lombok.Data;
|
| import java.io.Serializable;
| import java.util.List;
|
| /**
| * 仓库实体类
| */
| @Data
| public class ExportParamModel extends BaseModel implements Serializable {
|
| int id;
| int exportType;
| String userId;
| String nickName;
| String mobilePhone;
| String name;
| String paramName;
| String userType;
| String area;
| String imageType;
| String startTime;
| String endTime;
| String typeName;
| List<String> partnerIds;
| List<String> townIds;
| String isProhibit;
| String partnerId;
| int page;
|
| int limit;
| }
|
|