feiyu02
2021-11-22 15925907ba4b16d6fe3a5210186e0ce3cd19efa5
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
package com.flightfeather.uav.domain.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "co_complaint")
public class Complaint {
    @Id
    @Column(name = "ID")
    private Integer id;
 
    /**
     * 企业id
     */
    @Column(name = "CI_GUID")
    private String ciGuid;
 
    /**
     * 企业名称
     */
    @Column(name = "CI_Name")
    private String ciName;
 
    /**
     * 信访投诉污染类型id
     */
    @Column(name = "CO_Type")
    private Integer coType;
 
    /**
     * 信访投诉污染类型
     */
    @Column(name = "CO_Type_Name")
    private String coTypeName;
 
    /**
     * 信访时段
     */
    @Column(name = "CO_Time")
    private Date coTime;
 
    /**
     * @return ID
     */
    public Integer getId() {
        return id;
    }
 
    /**
     * @param id
     */
    public void setId(Integer id) {
        this.id = id;
    }
 
    /**
     * 获取企业id
     *
     * @return CI_GUID - 企业id
     */
    public String getCiGuid() {
        return ciGuid;
    }
 
    /**
     * 设置企业id
     *
     * @param ciGuid 企业id
     */
    public void setCiGuid(String ciGuid) {
        this.ciGuid = ciGuid == null ? null : ciGuid.trim();
    }
 
    /**
     * 获取企业名称
     *
     * @return CI_Name - 企业名称
     */
    public String getCiName() {
        return ciName;
    }
 
    /**
     * 设置企业名称
     *
     * @param ciName 企业名称
     */
    public void setCiName(String ciName) {
        this.ciName = ciName == null ? null : ciName.trim();
    }
 
    /**
     * 获取信访投诉污染类型id
     *
     * @return CO_Type - 信访投诉污染类型id
     */
    public Integer getCoType() {
        return coType;
    }
 
    /**
     * 设置信访投诉污染类型id
     *
     * @param coType 信访投诉污染类型id
     */
    public void setCoType(Integer coType) {
        this.coType = coType;
    }
 
    /**
     * 获取信访投诉污染类型
     *
     * @return CO_Type_Name - 信访投诉污染类型
     */
    public String getCoTypeName() {
        return coTypeName;
    }
 
    /**
     * 设置信访投诉污染类型
     *
     * @param coTypeName 信访投诉污染类型
     */
    public void setCoTypeName(String coTypeName) {
        this.coTypeName = coTypeName == null ? null : coTypeName.trim();
    }
 
    /**
     * 获取信访时段
     *
     * @return CO_Time - 信访时段
     */
    public Date getCoTime() {
        return coTime;
    }
 
    /**
     * 设置信访时段
     *
     * @param coTime 信访时段
     */
    public void setCoTime(Date coTime) {
        this.coTime = coTime;
    }
}