package cn.flightfeather.supervision.domain.ds1.entity;
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import javax.persistence.*;
|
import java.util.Date;
|
|
@Table(name = "sm_t_scene_construction_site")
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
@ApiModel(description = "工地信息")
|
public class SceneConstructionSite implements BaseScene {
|
/**
|
* 场景id,主键
|
*/
|
@Id
|
@Column(name = "S_GUID")
|
@ApiModelProperty("场景id")
|
private String sGuid;
|
|
/**
|
* 工程类型
|
*/
|
@Column(name = "CS_Project_Type")
|
@ApiModelProperty("工程类型")
|
private String csProjectType;
|
|
/**
|
* 建设状态
|
*/
|
@Column(name = "CS_Status")
|
@ApiModelProperty("建设状态")
|
private String csStatus;
|
|
/**
|
* 施工开始时间
|
*/
|
@Column(name = "CS_Start_Time")
|
@ApiModelProperty("施工开始时间")
|
private String csStartTime;
|
|
/**
|
* 施工结束时间
|
*/
|
@Column(name = "CS_End_Time")
|
@ApiModelProperty("施工结束时间")
|
private String csEndTime;
|
|
/**
|
* 剩余工期
|
*/
|
@Column(name = "CS_Left_Time")
|
@ApiModelProperty("剩余工期")
|
private String csLeftTime;
|
|
/**
|
* 占地面积
|
*/
|
@Column(name = "CS_Floor_Space")
|
@ApiModelProperty("占地面积")
|
private String csFloorSpace;
|
|
/**
|
* 施工面积
|
*/
|
@Column(name = "CS_Construction_Area")
|
@ApiModelProperty("施工面积")
|
private String csConstructionArea;
|
|
/**
|
* 每月施工面积
|
*/
|
@Column(name = "CS_Construction_Area_Per_Month")
|
@ApiModelProperty("每月施工面积")
|
private String csConstructionAreaPerMonth;
|
|
/**
|
* 业主单位
|
*/
|
@Column(name = "CS_Employer_Unit")
|
@ApiModelProperty("业主单位")
|
private String csEmployerUnit;
|
|
/**
|
* 业主单位联系人
|
*/
|
@Column(name = "CS_Employer_Contacts")
|
@ApiModelProperty("业主单位联系人")
|
private String csEmployerContacts;
|
|
/**
|
* 业主单位联系人电话
|
*/
|
@Column(name = "CS_Employer_Contacts_Tel")
|
@ApiModelProperty("业主单位联系人电话")
|
private String csEmployerContactsTel;
|
|
/**
|
* 施工单位
|
*/
|
@Column(name = "CS_Construction_Unit")
|
@ApiModelProperty("施工单位")
|
private String csConstructionUnit;
|
|
/**
|
* 施工单位联系人
|
*/
|
@Column(name = "CS_Construction_Contacts")
|
@ApiModelProperty("施工单位联系人")
|
private String csConstructionContacts;
|
|
/**
|
* 施工单位联系人电话
|
*/
|
@Column(name = "CS_Construction_Contacts_Tel")
|
@ApiModelProperty("施工单位联系人电话")
|
private String csConstructionContactsTel;
|
|
/**
|
* 安全员
|
*/
|
@Column(name = "CS_Security_Officer")
|
@ApiModelProperty("安全员")
|
private String csSecurityOfficer;
|
|
/**
|
* 安全员电话
|
*/
|
@Column(name = "CS_Security_Officer_Tel")
|
@ApiModelProperty("安全员电话")
|
private String csSecurityOfficerTel;
|
|
@Column(name = "CS_Update_Time")
|
private Date csUpdateTime;
|
|
@Column(name = "SI_Extension1")
|
private String siExtension1;
|
|
@Column(name = "SI_Extension2")
|
private String siExtension2;
|
|
@Column(name = "SI_Extension3")
|
private String siExtension3;
|
|
@Column(name = "SI_Remark")
|
private String siRemark;
|
|
/**
|
* 获取场景id,主键
|
*
|
* @return S_GUID - 场景id,主键
|
*/
|
public String getsGuid() {
|
return sGuid;
|
}
|
|
/**
|
* 设置场景id,主键
|
*
|
* @param sGuid 场景id,主键
|
*/
|
public void setsGuid(String sGuid) {
|
this.sGuid = sGuid == null ? null : sGuid.trim();
|
}
|
|
/**
|
* 获取工程类型
|
*
|
* @return CS_Project_Type - 工程类型
|
*/
|
public String getCsProjectType() {
|
return csProjectType;
|
}
|
|
/**
|
* 设置工程类型
|
*
|
* @param csProjectType 工程类型
|
*/
|
public void setCsProjectType(String csProjectType) {
|
this.csProjectType = csProjectType == null ? null : csProjectType.trim();
|
}
|
|
/**
|
* 获取施工阶段
|
*
|
* @return CS_Status - 施工阶段
|
*/
|
public String getCsStatus() {
|
return csStatus;
|
}
|
|
/**
|
* 设置施工阶段
|
*
|
* @param csStatus 施工阶段
|
*/
|
public void setCsStatus(String csStatus) {
|
this.csStatus = csStatus == null ? null : csStatus.trim();
|
}
|
|
/**
|
* 获取施工开始时间
|
*
|
* @return CS_Start_Time - 施工开始时间
|
*/
|
public String getCsStartTime() {
|
return csStartTime;
|
}
|
|
/**
|
* 设置施工开始时间
|
*
|
* @param csStartTime 施工开始时间
|
*/
|
public void setCsStartTime(String csStartTime) {
|
this.csStartTime = csStartTime;
|
}
|
|
/**
|
* 获取施工结束时间
|
*
|
* @return CS_End_Time - 施工结束时间
|
*/
|
public String getCsEndTime() {
|
return csEndTime;
|
}
|
|
/**
|
* 设置施工结束时间
|
*
|
* @param csEndTime 施工结束时间
|
*/
|
public void setCsEndTime(String csEndTime) {
|
this.csEndTime = csEndTime;
|
}
|
|
/**
|
* 获取剩余工期
|
*
|
* @return CS_Left_Time - 剩余工期
|
*/
|
public String getCsLeftTime() {
|
return csLeftTime;
|
}
|
|
/**
|
* 设置剩余工期
|
*
|
* @param csLeftTime 剩余工期
|
*/
|
public void setCsLeftTime(String csLeftTime) {
|
this.csLeftTime = csLeftTime == null ? null : csLeftTime.trim();
|
}
|
|
/**
|
* 获取占地面积
|
*
|
* @return CS_Floor_Space - 占地面积
|
*/
|
public String getCsFloorSpace() {
|
return csFloorSpace;
|
}
|
|
/**
|
* 设置占地面积
|
*
|
* @param csFloorSpace 占地面积
|
*/
|
public void setCsFloorSpace(String csFloorSpace) {
|
this.csFloorSpace = csFloorSpace == null ? null : csFloorSpace.trim();
|
}
|
|
/**
|
* 获取施工面积
|
*
|
* @return CS_Construction_Area - 施工面积
|
*/
|
public String getCsConstructionArea() {
|
return csConstructionArea;
|
}
|
|
/**
|
* 设置施工面积
|
*
|
* @param csConstructionArea 施工面积
|
*/
|
public void setCsConstructionArea(String csConstructionArea) {
|
this.csConstructionArea = csConstructionArea == null ? null : csConstructionArea.trim();
|
}
|
|
/**
|
* 获取每月施工面积
|
*
|
* @return CS_Construction_Area_Per_Month - 每月施工面积
|
*/
|
public String getCsConstructionAreaPerMonth() {
|
return csConstructionAreaPerMonth;
|
}
|
|
/**
|
* 设置每月施工面积
|
*
|
* @param csConstructionAreaPerMonth 每月施工面积
|
*/
|
public void setCsConstructionAreaPerMonth(String csConstructionAreaPerMonth) {
|
this.csConstructionAreaPerMonth = csConstructionAreaPerMonth == null ? null : csConstructionAreaPerMonth.trim();
|
}
|
|
/**
|
* 获取业主单位
|
*
|
* @return CS_Employer_Unit - 业主单位
|
*/
|
public String getCsEmployerUnit() {
|
return csEmployerUnit;
|
}
|
|
/**
|
* 设置业主单位
|
*
|
* @param csEmployerUnit 业主单位
|
*/
|
public void setCsEmployerUnit(String csEmployerUnit) {
|
this.csEmployerUnit = csEmployerUnit == null ? null : csEmployerUnit.trim();
|
}
|
|
/**
|
* 获取业主单位联系人
|
*
|
* @return CS_Employer_Contacts - 业主单位联系人
|
*/
|
public String getCsEmployerContacts() {
|
return csEmployerContacts;
|
}
|
|
/**
|
* 设置业主单位联系人
|
*
|
* @param csEmployerContacts 业主单位联系人
|
*/
|
public void setCsEmployerContacts(String csEmployerContacts) {
|
this.csEmployerContacts = csEmployerContacts == null ? null : csEmployerContacts.trim();
|
}
|
|
/**
|
* 获取业主单位联系人电话
|
*
|
* @return CS_Employer_Contacts_Tel - 业主单位联系人电话
|
*/
|
public String getCsEmployerContactsTel() {
|
return csEmployerContactsTel;
|
}
|
|
/**
|
* 设置业主单位联系人电话
|
*
|
* @param csEmployerContactsTel 业主单位联系人电话
|
*/
|
public void setCsEmployerContactsTel(String csEmployerContactsTel) {
|
this.csEmployerContactsTel = csEmployerContactsTel == null ? null : csEmployerContactsTel.trim();
|
}
|
|
/**
|
* 获取施工单位
|
*
|
* @return CS_Construction_Unit - 施工单位
|
*/
|
public String getCsConstructionUnit() {
|
return csConstructionUnit;
|
}
|
|
/**
|
* 设置施工单位
|
*
|
* @param csConstructionUnit 施工单位
|
*/
|
public void setCsConstructionUnit(String csConstructionUnit) {
|
this.csConstructionUnit = csConstructionUnit == null ? null : csConstructionUnit.trim();
|
}
|
|
/**
|
* 获取施工单位联系人
|
*
|
* @return CS_Construction_Contacts - 施工单位联系人
|
*/
|
public String getCsConstructionContacts() {
|
return csConstructionContacts;
|
}
|
|
/**
|
* 设置施工单位联系人
|
*
|
* @param csConstructionContacts 施工单位联系人
|
*/
|
public void setCsConstructionContacts(String csConstructionContacts) {
|
this.csConstructionContacts = csConstructionContacts == null ? null : csConstructionContacts.trim();
|
}
|
|
/**
|
* 获取施工单位联系人电话
|
*
|
* @return CS_Construction_Contacts_Tel - 施工单位联系人电话
|
*/
|
public String getCsConstructionContactsTel() {
|
return csConstructionContactsTel;
|
}
|
|
/**
|
* 设置施工单位联系人电话
|
*
|
* @param csConstructionContactsTel 施工单位联系人电话
|
*/
|
public void setCsConstructionContactsTel(String csConstructionContactsTel) {
|
this.csConstructionContactsTel = csConstructionContactsTel == null ? null : csConstructionContactsTel.trim();
|
}
|
|
/**
|
* 获取安全员
|
*
|
* @return CS_Security_Officer - 安全员
|
*/
|
public String getCsSecurityOfficer() {
|
return csSecurityOfficer;
|
}
|
|
/**
|
* 设置安全员
|
*
|
* @param csSecurityOfficer 安全员
|
*/
|
public void setCsSecurityOfficer(String csSecurityOfficer) {
|
this.csSecurityOfficer = csSecurityOfficer == null ? null : csSecurityOfficer.trim();
|
}
|
|
/**
|
* 获取安全员电话
|
*
|
* @return CS_Security_Officer_Tel - 安全员电话
|
*/
|
public String getCsSecurityOfficerTel() {
|
return csSecurityOfficerTel;
|
}
|
|
/**
|
* 设置安全员电话
|
*
|
* @param csSecurityOfficerTel 安全员电话
|
*/
|
public void setCsSecurityOfficerTel(String csSecurityOfficerTel) {
|
this.csSecurityOfficerTel = csSecurityOfficerTel;
|
}
|
|
public Date getCsUpdateTime() {
|
return csUpdateTime;
|
}
|
|
public void setCsUpdateTime(Date csUpdateTime) {
|
this.csUpdateTime = csUpdateTime;
|
}
|
|
/**
|
* @return SI_Extension1
|
*/
|
public String getSiExtension1() {
|
return siExtension1;
|
}
|
|
/**
|
* @param siExtension1
|
*/
|
public void setSiExtension1(String siExtension1) {
|
this.siExtension1 = siExtension1 == null ? null : siExtension1.trim();
|
}
|
|
/**
|
* @return SI_Extension2
|
*/
|
public String getSiExtension2() {
|
return siExtension2;
|
}
|
|
/**
|
* @param siExtension2
|
*/
|
public void setSiExtension2(String siExtension2) {
|
this.siExtension2 = siExtension2 == null ? null : siExtension2.trim();
|
}
|
|
/**
|
* @return SI_Extension3
|
*/
|
public String getSiExtension3() {
|
return siExtension3;
|
}
|
|
/**
|
* @param siExtension3
|
*/
|
public void setSiExtension3(String siExtension3) {
|
this.siExtension3 = siExtension3 == null ? null : siExtension3.trim();
|
}
|
|
/**
|
* @return SI_Remark
|
*/
|
public String getSiRemark() {
|
return siRemark;
|
}
|
|
/**
|
* @param siRemark
|
*/
|
public void setSiRemark(String siRemark) {
|
this.siRemark = siRemark == null ? null : siRemark.trim();
|
}
|
}
|