Helius
2021-06-28 1ae21f2e7931839bba5187c87f1627089253e7cf
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
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;
 
/**
 * banner model
 */
@Data
public class BannerModel extends BaseModel {
 
 
    Integer id;
    /**
     *
     */
    @ApiModelProperty(value="图片名字",required=true)
    String picName;
    /**
     *
     */
    @ApiModelProperty(value="图片路径",required=true)
    String picPath;
    /**
     *
     */
    @ApiModelProperty(value="图片链接",required=true)
    String picUrl;
    /**
     * 排序
     */
    @ApiModelProperty(value="排序",required=true)
    String sort;
    /**
     * 删除标记
     */
    @ApiModelProperty(value="删除标记(0:正常,1:删除)",required=true)
    String delFlag;
    /**
     * 创建时间
     */
    @ApiModelProperty(value="创建时间",required=true)
    String createTime;
 
    String cityId;
 
    String partnerId;
 
    String partnerName;
 
    List<String> townIdList;
 
    String townId;
 
    int page;
 
    int limit;
 
}