1098226878
2021-09-07 15929f913857a779c6d4e792a203a5dacc62e6c8
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
package com.java110.po.complaint;
 
import java.io.Serializable;
 
/**
 * @ClassName ComplaintPo
 * @Description TODO
 * @Author wuxw
 * @Date 2020/5/27 22:08
 * @Version 1.0
 * add by wuxw 2020/5/27
 **/
public class ComplaintPo implements Serializable {
 
    private String complaintId;
    private String storeId;
    private String typeCd;
    private String roomId;
    private String complaintName;
    private String tel;
    private String context;
    private String state;
    private String communityId;
    private String startUserId;
 
    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 getContext() {
        return context;
    }
 
    public void setContext(String context) {
        this.context = context;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getStartUserId() {
        return startUserId;
    }
 
    public void setStartUserId(String startUserId) {
        this.startUserId = startUserId;
    }
}