wuxw
2019-10-31 bb8701355cf1483862a4f9ccd3391d7cce6b3961
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
package com.java110.vo.api.complaint;
 
import java.io.Serializable;
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() {
        return complaintId;
    }
public void setComplaintId(String complaintId) {
        this.complaintId = complaintId;
    }
public String getStoreId() {
        return storeId;
    }
public void setStoreId(String storeId) {
        this.storeId = storeId;
    }
public String getTypeCd() {
        return typeCd;
    }
public void setTypeCd(String typeCd) {
        this.typeCd = typeCd;
    }
public String getRoomId() {
        return roomId;
    }
public void setRoomId(String roomId) {
        this.roomId = roomId;
    }
public String getComplaintName() {
        return complaintName;
    }
public void setComplaintName(String complaintName) {
        this.complaintName = complaintName;
    }
public String getTel() {
        return tel;
    }
public void setTel(String tel) {
        this.tel = tel;
    }
public String getState() {
        return state;
    }
public void setState(String state) {
        this.state = state;
    }
public String getContext() {
        return context;
    }
public void setContext(String context) {
        this.context = context;
    }
 
 
 
}