package cn.flightfeather.supervision.domain.entity;
|
|
import java.util.Date;
|
import javax.persistence.*;
|
|
@Table(name = "ea_t_self_patrol_task")
|
public class SelfPatrolTask {
|
@Id
|
@Column(name = "SP_GUID")
|
private String spGuid;
|
|
@Column(name = "SP_To_User_Id")
|
private String spToUserId;
|
|
@Column(name = "SP_From_User_Id")
|
private String spFromUserId;
|
|
@Column(name = "SP_Scene_Type_Id")
|
private Integer spSceneTypeId;
|
|
@Column(name = "SP_Ledger_Type_Id")
|
private String spLedgerTypeId;
|
|
@Column(name = "SP_Tag")
|
private String spTag;
|
|
/**
|
* 发布单位
|
*/
|
@Column(name = "SP_Publish_Unit")
|
private String spPublishUnit;
|
|
@Column(name = "SP_Task_Year")
|
private Integer spTaskYear;
|
|
@Column(name = "SP_Task_Month")
|
private Integer spTaskMonth;
|
|
@Column(name = "SP_Create_Time")
|
private Date spCreateTime;
|
|
@Column(name = "SP_Deadline")
|
private Date spDeadline;
|
|
@Column(name = "SP_Task_Status")
|
private Integer spTaskStatus;
|
|
/**
|
* @return SP_GUID
|
*/
|
public String getSpGuid() {
|
return spGuid;
|
}
|
|
/**
|
* @param spGuid
|
*/
|
public void setSpGuid(String spGuid) {
|
this.spGuid = spGuid == null ? null : spGuid.trim();
|
}
|
|
/**
|
* @return SP_To_User_Id
|
*/
|
public String getSpToUserId() {
|
return spToUserId;
|
}
|
|
/**
|
* @param spToUserId
|
*/
|
public void setSpToUserId(String spToUserId) {
|
this.spToUserId = spToUserId == null ? null : spToUserId.trim();
|
}
|
|
/**
|
* @return SP_From_User_Id
|
*/
|
public String getSpFromUserId() {
|
return spFromUserId;
|
}
|
|
/**
|
* @param spFromUserId
|
*/
|
public void setSpFromUserId(String spFromUserId) {
|
this.spFromUserId = spFromUserId == null ? null : spFromUserId.trim();
|
}
|
|
/**
|
* @return SP_Scene_Type_Id
|
*/
|
public Integer getSpSceneTypeId() {
|
return spSceneTypeId;
|
}
|
|
/**
|
* @param spSceneTypeId
|
*/
|
public void setSpSceneTypeId(Integer spSceneTypeId) {
|
this.spSceneTypeId = spSceneTypeId;
|
}
|
|
/**
|
* @return SP_Ledger_Type_Id
|
*/
|
public String getSpLedgerTypeId() {
|
return spLedgerTypeId;
|
}
|
|
/**
|
* @param spLedgerTypeId
|
*/
|
public void setSpLedgerTypeId(String spLedgerTypeId) {
|
this.spLedgerTypeId = spLedgerTypeId == null ? null : spLedgerTypeId.trim();
|
}
|
|
/**
|
* @return SP_Tag
|
*/
|
public String getSpTag() {
|
return spTag;
|
}
|
|
/**
|
* @param spTag
|
*/
|
public void setSpTag(String spTag) {
|
this.spTag = spTag == null ? null : spTag.trim();
|
}
|
|
/**
|
* 获取发布单位
|
*
|
* @return SP_Publish_Unit - 发布单位
|
*/
|
public String getSpPublishUnit() {
|
return spPublishUnit;
|
}
|
|
/**
|
* 设置发布单位
|
*
|
* @param spPublishUnit 发布单位
|
*/
|
public void setSpPublishUnit(String spPublishUnit) {
|
this.spPublishUnit = spPublishUnit == null ? null : spPublishUnit.trim();
|
}
|
|
/**
|
* @return SP_Task_Year
|
*/
|
public Integer getSpTaskYear() {
|
return spTaskYear;
|
}
|
|
/**
|
* @param spTaskYear
|
*/
|
public void setSpTaskYear(Integer spTaskYear) {
|
this.spTaskYear = spTaskYear;
|
}
|
|
/**
|
* @return SP_Task_Month
|
*/
|
public Integer getSpTaskMonth() {
|
return spTaskMonth;
|
}
|
|
/**
|
* @param spTaskMonth
|
*/
|
public void setSpTaskMonth(Integer spTaskMonth) {
|
this.spTaskMonth = spTaskMonth;
|
}
|
|
/**
|
* @return SP_Create_Time
|
*/
|
public Date getSpCreateTime() {
|
return spCreateTime;
|
}
|
|
/**
|
* @param spCreateTime
|
*/
|
public void setSpCreateTime(Date spCreateTime) {
|
this.spCreateTime = spCreateTime;
|
}
|
|
/**
|
* @return SP_Deadline
|
*/
|
public Date getSpDeadline() {
|
return spDeadline;
|
}
|
|
/**
|
* @param spDeadline
|
*/
|
public void setSpDeadline(Date spDeadline) {
|
this.spDeadline = spDeadline;
|
}
|
|
/**
|
* @return SP_Task_Status
|
*/
|
public Integer getSpTaskStatus() {
|
return spTaskStatus;
|
}
|
|
/**
|
* @param spTaskStatus
|
*/
|
public void setSpTaskStatus(Integer spTaskStatus) {
|
this.spTaskStatus = spTaskStatus;
|
}
|
}
|