Feedback.java
3.92 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
package com.diligrp.mobsite.man.domain;
import com.diligrp.website.util.domain.BaseDomain;
/**
* <B>Description</B> <br />
* <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />
* 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
* <B>Company</B> 地利集团
* @createTime 2014-9-24 16:53:43
* @author template
*/
public class Feedback extends BaseDomain {
/**
* 市场id
*/
private Long marketId;
/**
* 市场名称
*/
private String marketName;
/**
* 用户登录名
*/
private String username;
/**
* 用户id
*/
private Long userId;
/**
* android设备:1,ios设备:2
*/
private Integer deviceType;
/**
* 设备版本
*/
private String deviceVersion;
/**
* 客户端版本
*/
private String appVersion;
/**
* 已读:1,未读:2
*/
private Integer status;
/**
* 反馈内容
*/
private String content;
/**
* 系统类型
*/
private String systemType;
public String getMarketName() {
return marketName;
}
public void setMarketName(String marketName) {
this.marketName = marketName;
}
public void setMarketId (Long marketId){
this.marketId = marketId;
}
public Long getMarketId(){
return this.marketId;
}
public void setUsername (String username){
this.username = username;
}
public String getUsername(){
return this.username;
}
public void setUserId (Long userId){
this.userId = userId;
}
public Long getUserId(){
return this.userId;
}
public void setDeviceType (Integer deviceType){
this.deviceType = deviceType;
}
public Integer getDeviceType(){
return this.deviceType;
}
public void setDeviceVersion (String deviceVersion){
this.deviceVersion = deviceVersion;
}
public String getDeviceVersion(){
return this.deviceVersion;
}
public void setAppVersion (String appVersion){
this.appVersion = appVersion;
}
public String getAppVersion(){
return this.appVersion;
}
public void setStatus (Integer status){
this.status = status;
}
public Integer getStatus(){
return this.status;
}
public void setContent (String content){
this.content = content;
}
public String getContent(){
return this.content;
}
public String toString(){
StringBuffer sb = new StringBuffer();
sb.append("Feedback [");
sb.append("id = ");
sb.append(id);
sb.append(", marketId = ");
sb.append(marketId);
sb.append(", username = ");
sb.append(username);
sb.append(", userId = ");
sb.append(userId);
sb.append(", deviceType = ");
sb.append(deviceType);
sb.append(", deviceVersion = ");
sb.append(deviceVersion);
sb.append(", appVersion = ");
sb.append(appVersion);
sb.append(", status = ");
sb.append(status);
sb.append(", content = ");
sb.append(content);
sb.append(", yn = ");
sb.append(yn);
sb.append(", created = ");
sb.append(created);
sb.append(", modified = ");
sb.append(modified);
sb.append("]");
return sb.toString();
}
/**
* get value of Feedback.systemType
* @return the systemType
* @createTime 2014年11月25日 上午11:22:24
* @author zhangshirui
*/
public String getSystemType() {
return systemType;
}
/**
* set value of Feedback.systemType
* @param systemType the systemType to set
* @createTime 2014年11月25日 上午11:22:24
* @author zhangshirui
*/
public void setSystemType(String systemType) {
this.systemType = systemType;
}
}