|
|
@@ -6,62 +6,112 @@ import java.util.Date;
|
|
|
public class ApiComplaintDataVo implements Serializable {
|
|
|
|
|
|
private String complaintId;
|
|
|
-private String storeId;
|
|
|
-private String typeCd;
|
|
|
-private String roomId;
|
|
|
-private String complaintName;
|
|
|
-private String tel;
|
|
|
-private String state;
|
|
|
-private String context;
|
|
|
-public String getComplaintId() {
|
|
|
+ private String storeId;
|
|
|
+ private String typeCd;
|
|
|
+ private String roomId;
|
|
|
+ private String complaintName;
|
|
|
+ private String tel;
|
|
|
+ private String state;
|
|
|
+ private String context;
|
|
|
+ private String roomNum;
|
|
|
+ private String unitNum;
|
|
|
+ private String floorNum;
|
|
|
+ private String communityId;
|
|
|
+
|
|
|
+
|
|
|
+ public String getComplaintId() {
|
|
|
return complaintId;
|
|
|
}
|
|
|
-public void setComplaintId(String complaintId) {
|
|
|
+
|
|
|
+ public void setComplaintId(String complaintId) {
|
|
|
this.complaintId = complaintId;
|
|
|
}
|
|
|
-public String getStoreId() {
|
|
|
+
|
|
|
+ public String getStoreId() {
|
|
|
return storeId;
|
|
|
}
|
|
|
-public void setStoreId(String storeId) {
|
|
|
+
|
|
|
+ public void setStoreId(String storeId) {
|
|
|
this.storeId = storeId;
|
|
|
}
|
|
|
-public String getTypeCd() {
|
|
|
+
|
|
|
+ public String getTypeCd() {
|
|
|
return typeCd;
|
|
|
}
|
|
|
-public void setTypeCd(String typeCd) {
|
|
|
+
|
|
|
+ public void setTypeCd(String typeCd) {
|
|
|
this.typeCd = typeCd;
|
|
|
}
|
|
|
-public String getRoomId() {
|
|
|
+
|
|
|
+ public String getRoomId() {
|
|
|
return roomId;
|
|
|
}
|
|
|
-public void setRoomId(String roomId) {
|
|
|
+
|
|
|
+ public void setRoomId(String roomId) {
|
|
|
this.roomId = roomId;
|
|
|
}
|
|
|
-public String getComplaintName() {
|
|
|
+
|
|
|
+ public String getComplaintName() {
|
|
|
return complaintName;
|
|
|
}
|
|
|
-public void setComplaintName(String complaintName) {
|
|
|
+
|
|
|
+ public void setComplaintName(String complaintName) {
|
|
|
this.complaintName = complaintName;
|
|
|
}
|
|
|
-public String getTel() {
|
|
|
+
|
|
|
+ public String getTel() {
|
|
|
return tel;
|
|
|
}
|
|
|
-public void setTel(String tel) {
|
|
|
+
|
|
|
+ public void setTel(String tel) {
|
|
|
this.tel = tel;
|
|
|
}
|
|
|
-public String getState() {
|
|
|
+
|
|
|
+ public String getState() {
|
|
|
return state;
|
|
|
}
|
|
|
-public void setState(String state) {
|
|
|
+
|
|
|
+ public void setState(String state) {
|
|
|
this.state = state;
|
|
|
}
|
|
|
-public String getContext() {
|
|
|
+
|
|
|
+ public String getContext() {
|
|
|
return context;
|
|
|
}
|
|
|
-public void setContext(String context) {
|
|
|
+
|
|
|
+ public void setContext(String context) {
|
|
|
this.context = context;
|
|
|
}
|
|
|
|
|
|
+ public String getRoomNum() {
|
|
|
+ return roomNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRoomNum(String roomNum) {
|
|
|
+ this.roomNum = roomNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUnitNum() {
|
|
|
+ return unitNum;
|
|
|
+ }
|
|
|
|
|
|
+ public void setUnitNum(String unitNum) {
|
|
|
+ this.unitNum = unitNum;
|
|
|
+ }
|
|
|
|
|
|
+ public String getFloorNum() {
|
|
|
+ return floorNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFloorNum(String floorNum) {
|
|
|
+ this.floorNum = floorNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCommunityId() {
|
|
|
+ return communityId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCommunityId(String communityId) {
|
|
|
+ this.communityId = communityId;
|
|
|
+ }
|
|
|
}
|