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.*; @Table(name = "sm_t_scene_mixing_plant") @JsonInclude(JsonInclude.Include.NON_NULL) @ApiModel("搅拌站信息") public class SceneMixingPlant implements BaseScene { /** * 场景id,主键 */ @Id @Column(name = "S_GUID") @ApiModelProperty("场景id") private String sGuid; /** * 营运状态 */ @Column(name = "MP_Status") @ApiModelProperty("营运状态") private String mpStatus; /** * 占地面积 */ @Column(name = "MP_Floor_Space") @ApiModelProperty("占地面积") private String mpFloorSpace; /** * 规划面积 */ @Column(name = "MP_Planning_Area") @ApiModelProperty("规划面积") private String mpPlanningArea; /** * 业主单位 */ @Column(name = "MP_Employer_Unit") @ApiModelProperty("业主单位") private String mpEmployerUnit; /** * 业主单位联系人 */ @Column(name = "MP_Employer_Contacts") @ApiModelProperty("业主单位联系人") private String mpEmployerContacts; /** * 业主单位联系人电话 */ @Column(name = "MP_Employer_Contacts_Tel") @ApiModelProperty("业主单位联系人电话") private String mpEmployerContactsTel; /** * 是否为绿色环保站厂 */ @Column(name = "MP_Green_Plant") @ApiModelProperty("是否为绿色环保站厂") private Boolean mpGreenPlant; /** * 是否为文明场站 */ @Column(name = "MP_Civilly_Plant") @ApiModelProperty("是否为文明场站") private Boolean mpCivillyPlant; @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 MP_Status - 营运状态 */ public String getMpStatus() { return mpStatus; } /** * 设置营运状态 * * @param mpStatus 营运状态 */ public void setMpStatus(String mpStatus) { this.mpStatus = mpStatus == null ? null : mpStatus.trim(); } /** * 获取占地面积 * * @return MP_Floor_Space - 占地面积 */ public String getMpFloorSpace() { return mpFloorSpace; } /** * 设置占地面积 * * @param mpFloorSpace 占地面积 */ public void setMpFloorSpace(String mpFloorSpace) { this.mpFloorSpace = mpFloorSpace == null ? null : mpFloorSpace.trim(); } /** * 获取规划面积 * * @return MP_Planning_Area - 规划面积 */ public String getMpPlanningArea() { return mpPlanningArea; } /** * 设置规划面积 * * @param mpPlanningArea 规划面积 */ public void setMpPlanningArea(String mpPlanningArea) { this.mpPlanningArea = mpPlanningArea == null ? null : mpPlanningArea.trim(); } /** * 获取业主单位 * * @return MP_Employer_Unit - 业主单位 */ public String getMpEmployerUnit() { return mpEmployerUnit; } /** * 设置业主单位 * * @param mpEmployerUnit 业主单位 */ public void setMpEmployerUnit(String mpEmployerUnit) { this.mpEmployerUnit = mpEmployerUnit == null ? null : mpEmployerUnit.trim(); } /** * 获取业主单位联系人 * * @return MP_Employer_Contacts - 业主单位联系人 */ public String getMpEmployerContacts() { return mpEmployerContacts; } /** * 设置业主单位联系人 * * @param mpEmployerContacts 业主单位联系人 */ public void setMpEmployerContacts(String mpEmployerContacts) { this.mpEmployerContacts = mpEmployerContacts == null ? null : mpEmployerContacts.trim(); } /** * 获取业主单位联系人电话 * * @return MP_Employer_Contacts_Tel - 业主单位联系人电话 */ public String getMpEmployerContactsTel() { return mpEmployerContactsTel; } /** * 设置业主单位联系人电话 * * @param mpEmployerContactsTel 业主单位联系人电话 */ public void setMpEmployerContactsTel(String mpEmployerContactsTel) { this.mpEmployerContactsTel = mpEmployerContactsTel == null ? null : mpEmployerContactsTel.trim(); } /** * 获取是否为绿色环保站厂 * * @return MP_Green_Plant - 是否为绿色环保站厂 */ public Boolean getMpGreenPlant() { return mpGreenPlant; } /** * 设置是否为绿色环保站厂 * * @param mpGreenPlant 是否为绿色环保站厂 */ public void setMpGreenPlant(Boolean mpGreenPlant) { this.mpGreenPlant = mpGreenPlant; } /** * 获取是否为文明场站 * * @return MP_Civilly_Plant - 是否为文明场站 */ public Boolean getMpCivillyPlant() { return mpCivillyPlant; } /** * 设置是否为文明场站 * * @param mpCivillyPlant 是否为文明场站 */ public void setMpCivillyPlant(Boolean mpCivillyPlant) { this.mpCivillyPlant = mpCivillyPlant; } /** * @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(); } }