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;
|
}
|
}
|