xiaoyong931011
2021-06-24 ccb35b497df342c6de15f3a6be4c065b0ca7f1f1
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.xzx.gc.model.admin;
 
import com.xzx.gc.model.admin.baseModel.BaseModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
@Data
public class ItemModel extends BaseModel  {
 
    Long id;
    @ApiModelProperty(value="分类编码",required=true)
    String itemType;
    // 分类名字
    @ApiModelProperty(value="分类名字",required=true)
    String title;
    // 分类图片
    @ApiModelProperty(value="分类图片",required=true)
    String picture;
    // 回收价格
    @ApiModelProperty(value="回收价格",required=true)
    Double price;
    // 入库价格
    @ApiModelProperty(value="入库价格",required=true)
    Double putStoragePrice;
    // 置顶
    @ApiModelProperty(value="置顶",required=true)
    Long topFlag;
    // 父级ID
    @ApiModelProperty(value="父级ID(大类Id)",required=true)
    Long parentId;
    // 排序字段
    @ApiModelProperty(value="父级ID(排序字段)",required=true)
    Integer sort;
    // 创建时间
    @ApiModelProperty(value="创建时间",required=true)
    String createTime;
    // 删除标记
    @ApiModelProperty(value="删除标记",required=true)
    Integer delFlag;
    // 单位
    @ApiModelProperty(value="单位",required=true)
    String itemUnit;
    @ApiModelProperty(value="500公斤以上价格",required=true)
    Double secondPrice;
    @ApiModelProperty(value="500公斤以上价格",required=true)
    List<ItemModel> children;
    @ApiModelProperty(value="类别",required=true)
    String type;
 
    @ApiModelProperty("设置的最小价格")
    private  String minPrice;
    @ApiModelProperty("设置的最大价格")
    private  String maxPrice;
 
 
 
    String partnerId;
    String partnerName;
    String packageId;
    List<String> partnerIds;
    String cityId;
    List<String> townIdList;
    List<List<String>> resultArea;
 
    @ApiModelProperty("是否显示 1:显示 0不显示")
    private Integer showFlag;
    int pageNum;
 
    int limitNum;
 
}