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_wharf")
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
@ApiModel("码头信息")
|
public class SceneWharf implements BaseScene {
|
/**
|
* 场景id,主键
|
*/
|
@Id
|
@Column(name = "S_GUID")
|
@ApiModelProperty("场景id")
|
private String sGuid;
|
|
/**
|
* 类型
|
*/
|
@Column(name = "W_Project_Type")
|
@ApiModelProperty("类型")
|
private String wProjectType;
|
|
/**
|
* 营运状态
|
*/
|
@Column(name = "W_Status")
|
@ApiModelProperty("营运状态")
|
private String wStatus;
|
|
/**
|
* 经营许可证
|
*/
|
@Column(name = "W_Business_Certificate")
|
@ApiModelProperty("经营许可证")
|
private String wBusinessCertificate;
|
|
/**
|
* 占地面积
|
*/
|
@Column(name = "W_Floor_Space")
|
@ApiModelProperty("占地面积")
|
private String wFloorSpace;
|
|
/**
|
* 规划面积
|
*/
|
@Column(name = "W_Planning_Area")
|
@ApiModelProperty("规划面积")
|
private String wPlanningArea;
|
|
/**
|
* 业主单位
|
*/
|
@Column(name = "W_Employer_Unit")
|
@ApiModelProperty("业主单位")
|
private String wEmployerUnit;
|
|
/**
|
* 业主单位联系人
|
*/
|
@Column(name = "W_Employer_Contacts")
|
@ApiModelProperty("业主单位联系人")
|
private String wEmployerContacts;
|
|
/**
|
* 业主单位联系人电话
|
*/
|
@Column(name = "W_Employer_Contacts_Tel")
|
@ApiModelProperty("业主单位联系人电话")
|
private String wEmployerContactsTel;
|
|
/**
|
* 租赁单位
|
*/
|
@Column(name = "W_Rent_Unit")
|
@ApiModelProperty("租赁单位")
|
private String wRentUnit;
|
|
/**
|
* 租赁单位联系人
|
*/
|
@Column(name = "W_Rent_Contacts")
|
@ApiModelProperty("租赁单位联系人")
|
private String wRentContacts;
|
|
/**
|
* 租赁单位联系人电话
|
*/
|
@Column(name = "W_Rent_Contacts_Tel")
|
@ApiModelProperty("租赁单位联系人电话")
|
private String wRentContactsTel;
|
|
@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 W_Project_Type - 类型
|
*/
|
public String getwProjectType() {
|
return wProjectType;
|
}
|
|
/**
|
* 设置类型
|
*
|
* @param wProjectType 类型
|
*/
|
public void setwProjectType(String wProjectType) {
|
this.wProjectType = wProjectType == null ? null : wProjectType.trim();
|
}
|
|
/**
|
* 获取营运状态
|
*
|
* @return W_Status - 营运状态
|
*/
|
public String getwStatus() {
|
return wStatus;
|
}
|
|
/**
|
* 设置营运状态
|
*
|
* @param wStatus 营运状态
|
*/
|
public void setwStatus(String wStatus) {
|
this.wStatus = wStatus == null ? null : wStatus.trim();
|
}
|
|
/**
|
* 获取经营许可证
|
*
|
* @return W_Business_Certificate - 经营许可证
|
*/
|
public String getwBusinessCertificate() {
|
return wBusinessCertificate;
|
}
|
|
/**
|
* 设置经营许可证
|
*
|
* @param wBusinessCertificate 经营许可证
|
*/
|
public void setwBusinessCertificate(String wBusinessCertificate) {
|
this.wBusinessCertificate = wBusinessCertificate == null ? null : wBusinessCertificate.trim();
|
}
|
|
/**
|
* 获取占地面积
|
*
|
* @return W_Floor_Space - 占地面积
|
*/
|
public String getwFloorSpace() {
|
return wFloorSpace;
|
}
|
|
/**
|
* 设置占地面积
|
*
|
* @param wFloorSpace 占地面积
|
*/
|
public void setwFloorSpace(String wFloorSpace) {
|
this.wFloorSpace = wFloorSpace == null ? null : wFloorSpace.trim();
|
}
|
|
/**
|
* 获取规划面积
|
*
|
* @return W_Planning_Area - 规划面积
|
*/
|
public String getwPlanningArea() {
|
return wPlanningArea;
|
}
|
|
/**
|
* 设置规划面积
|
*
|
* @param wPlanningArea 规划面积
|
*/
|
public void setwPlanningArea(String wPlanningArea) {
|
this.wPlanningArea = wPlanningArea == null ? null : wPlanningArea.trim();
|
}
|
|
/**
|
* 获取业主单位
|
*
|
* @return W_Employer_Unit - 业主单位
|
*/
|
public String getwEmployerUnit() {
|
return wEmployerUnit;
|
}
|
|
/**
|
* 设置业主单位
|
*
|
* @param wEmployerUnit 业主单位
|
*/
|
public void setwEmployerUnit(String wEmployerUnit) {
|
this.wEmployerUnit = wEmployerUnit == null ? null : wEmployerUnit.trim();
|
}
|
|
/**
|
* 获取业主单位联系人
|
*
|
* @return W_Employer_Contacts - 业主单位联系人
|
*/
|
public String getwEmployerContacts() {
|
return wEmployerContacts;
|
}
|
|
/**
|
* 设置业主单位联系人
|
*
|
* @param wEmployerContacts 业主单位联系人
|
*/
|
public void setwEmployerContacts(String wEmployerContacts) {
|
this.wEmployerContacts = wEmployerContacts == null ? null : wEmployerContacts.trim();
|
}
|
|
/**
|
* 获取业主单位联系人电话
|
*
|
* @return W_Employer_Contacts_Tel - 业主单位联系人电话
|
*/
|
public String getwEmployerContactsTel() {
|
return wEmployerContactsTel;
|
}
|
|
/**
|
* 设置业主单位联系人电话
|
*
|
* @param wEmployerContactsTel 业主单位联系人电话
|
*/
|
public void setwEmployerContactsTel(String wEmployerContactsTel) {
|
this.wEmployerContactsTel = wEmployerContactsTel == null ? null : wEmployerContactsTel.trim();
|
}
|
|
/**
|
* 获取租赁单位
|
*
|
* @return W_Rent_Unit - 租赁单位
|
*/
|
public String getwRentUnit() {
|
return wRentUnit;
|
}
|
|
/**
|
* 设置租赁单位
|
*
|
* @param wRentUnit 租赁单位
|
*/
|
public void setwRentUnit(String wRentUnit) {
|
this.wRentUnit = wRentUnit == null ? null : wRentUnit.trim();
|
}
|
|
/**
|
* 获取租赁单位联系人
|
*
|
* @return W_Rent_Contacts - 租赁单位联系人
|
*/
|
public String getwRentContacts() {
|
return wRentContacts;
|
}
|
|
/**
|
* 设置租赁单位联系人
|
*
|
* @param wRentContacts 租赁单位联系人
|
*/
|
public void setwRentContacts(String wRentContacts) {
|
this.wRentContacts = wRentContacts == null ? null : wRentContacts.trim();
|
}
|
|
/**
|
* 获取租赁单位联系人电话
|
*
|
* @return W_Rent_Contacts_Tel - 租赁单位联系人电话
|
*/
|
public String getwRentContactsTel() {
|
return wRentContactsTel;
|
}
|
|
/**
|
* 设置租赁单位联系人电话
|
*
|
* @param wRentContactsTel 租赁单位联系人电话
|
*/
|
public void setwRentContactsTel(String wRentContactsTel) {
|
this.wRentContactsTel = wRentContactsTel == null ? null : wRentContactsTel.trim();
|
}
|
|
/**
|
* @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();
|
}
|
}
|