rk
2 天以前 4a8ff39b0fab0627ef8f7459587d514cc01c3676
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package com.doumee.keyCabinet.base;
 
import java.io.Serializable;
 
/**
 * 返回banner图数据
 */
//返回banner图数据
public class BannerPicResponsePara implements Serializable {
 
    //主键id")
    private String id;
 
    //图片Url")
    private String pathUrl;
    //图片url全路径")
    private String imageFullPath;
    //排序")
    private Integer sort;
    //跳转页面参数值")
    private String paramValue;
    //参数名称值")
    private String paramName;
    //0:首页banner,1:新人")
    private String type;
    //首页标题")
    private String title;
    //图文内容")
    private String content;
    //是否启用")
    private String isAllow;
    private String typeName;
    //跳转路径")
    private String jumpPath;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getPathUrl() {
        return pathUrl;
    }
 
    public void setPathUrl(String pathUrl) {
        this.pathUrl = pathUrl;
    }
 
    public String getImageFullPath() {
        return imageFullPath;
    }
 
    public void setImageFullPath(String imageFullPath) {
        this.imageFullPath = imageFullPath;
    }
 
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
 
    public String getParamValue() {
        return paramValue;
    }
 
    public void setParamValue(String paramValue) {
        this.paramValue = paramValue;
    }
 
    public String getParamName() {
        return paramName;
    }
 
    public void setParamName(String paramName) {
        this.paramName = paramName;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getIsAllow() {
        return isAllow;
    }
 
    public void setIsAllow(String isAllow) {
        this.isAllow = isAllow;
    }
 
    public String getTypeName() {
        return typeName;
    }
 
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
 
    public String getJumpPath() {
        return jumpPath;
    }
 
    public void setJumpPath(String jumpPath) {
        this.jumpPath = jumpPath;
    }
}