FeedBack.java
3.93 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
174
175
176
177
178
package com.diligrp.mobsite.getway.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> 地利集团
*
* @author wujianjun
* @createTime 2014/9/24 14:42
*/
@SuppressWarnings("serial")
public class FeedBack extends BaseDomain {
/**
* android
*/
public static final Integer DEVICE_TYPE_ANDROID = 1;
/**
* ios
*/
public static final Integer DEVICE_TYPE_IOS = 2;
/**
* 已读
*/
public static final Integer STATUS_READED = 1;
/**
* 未读
*/
public static final Integer STATUS_UNREAD = 2;
/**
* 反馈类型:反馈
*/
private static final int TYPE_FEEDBACK = 1;
/**
* 反馈的意见内容
*/
private String content;
/**
* 用户移动设备类型
* DEVICE_TYPE_*
*/
private Integer deviceType;
/**
* 用户移动设备版本
*/
private String deviceVersion;
/**
* 反馈类型 TYPE_*
*/
private Integer type = TYPE_FEEDBACK;
/**
* 应用软件版本
*/
private String appVersion;
/**
* STATUS_*
*/
private Integer status = STATUS_UNREAD;
private Long marketId;
private Long userId;
private String userAccountName;
/**
* 系统类型
*/
private String systemType;
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Integer getDeviceType() {
return deviceType;
}
public void setDeviceType(Integer deviceType) {
this.deviceType = deviceType;
}
public String getDeviceVersion() {
return deviceVersion;
}
public void setDeviceVersion(String deviceVersion) {
this.deviceVersion = deviceVersion;
}
public String getAppVersion() {
return appVersion;
}
public void setAppVersion(String appVersion) {
this.appVersion = appVersion;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getMarketId() {
return marketId;
}
public void setMarketId(Long marketId) {
this.marketId = marketId;
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getUserAccountName() {
return userAccountName;
}
public void setUserAccountName(String userAccountName) {
this.userAccountName = userAccountName;
}
/**
* get value of FeedBack.systemType
* @return the systemType
* @createTime 2014年11月26日 下午3:50:15
* @author zhangshirui
*/
public String getSystemType() {
return systemType;
}
/**
* set value of FeedBack.systemType
* @param systemType the systemType to set
* @createTime 2014年11月26日 下午3:50:15
* @author zhangshirui
*/
public void setSystemType(String systemType) {
this.systemType = systemType;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return "FeedBack [content=" + content + ", deviceType=" + deviceType
+ ", deviceVersion=" + deviceVersion + ", type=" + type
+ ", appVersion=" + appVersion + ", status=" + status
+ ", marketId=" + marketId + ", userId=" + userId
+ ", userAccountName=" + userAccountName + ", systemType="
+ systemType + "]";
}
}