package cn.flightfeather.supervision.domain.entity;
|
|
import java.util.Date;
|
import javax.persistence.*;
|
|
@Table(name = "ea_t_baseinfo")
|
public class BaseInfo {
|
/**
|
* 用户id
|
*/
|
@Id
|
@Column(name = "BI_GUID")
|
private String biGuid;
|
|
/**
|
* 用户昵称
|
*/
|
@Column(name = "BI_Name")
|
private String biName;
|
|
/**
|
* 用户简称
|
*/
|
@Column(name = "BI_Nick_Name")
|
private String biNickName;
|
|
/**
|
* 所属公司id
|
*/
|
@Column(name = "CI_GUID")
|
private String ciGuid;
|
|
/**
|
* 所属公司名称
|
*/
|
@Column(name = "CI_Name")
|
private String ciName;
|
|
@Column(name = "BI_Province_Code")
|
private String biProvinceCode;
|
|
@Column(name = "BI_Province_Name")
|
private String biProvinceName;
|
|
@Column(name = "BI_City_Code")
|
private String biCityCode;
|
|
@Column(name = "BI_City_Name")
|
private String biCityName;
|
|
@Column(name = "BI_District_Code")
|
private String biDistrictCode;
|
|
@Column(name = "BI_District_Name")
|
private String biDistrictName;
|
|
@Column(name = "BI_Town_Code")
|
private String biTownCode;
|
|
@Column(name = "BI_Town_Name")
|
private String biTownName;
|
|
/**
|
* 所属物业公司名称id
|
*/
|
@Column(name = "BI_Management_Company_Id")
|
private String biManagementCompanyId;
|
|
/**
|
* 所属物业公司名称
|
*/
|
@Column(name = "BI_Management_Company")
|
private String biManagementCompany;
|
|
/**
|
* 联系人
|
*/
|
@Column(name = "BI_Contact")
|
private String biContact;
|
|
/**
|
* 联系电话
|
*/
|
@Column(name = "BI_Telephone")
|
private String biTelephone;
|
|
@Column(name = "BI_Address")
|
private String biAddress;
|
|
/**
|
* 创建时间
|
*/
|
@Column(name = "BI_Create_Time")
|
private Date biCreateTime;
|
|
@Column(name = "BI_Update_Time")
|
private Date biUpdateTime;
|
|
@Column(name = "BI_Extension1")
|
private String biExtension1;
|
|
@Column(name = "BI_Extension2")
|
private String biExtension2;
|
|
@Column(name = "BI_Extension3")
|
private String biExtension3;
|
|
@Column(name = "BI_Remark")
|
private String biRemark;
|
|
/**
|
* 获取用户id
|
*
|
* @return BI_GUID - 用户id
|
*/
|
public String getBiGuid() {
|
return biGuid;
|
}
|
|
/**
|
* 设置用户id
|
*
|
* @param biGuid 用户id
|
*/
|
public void setBiGuid(String biGuid) {
|
this.biGuid = biGuid == null ? null : biGuid.trim();
|
}
|
|
/**
|
* 获取用户昵称
|
*
|
* @return BI_Name - 用户昵称
|
*/
|
public String getBiName() {
|
return biName;
|
}
|
|
/**
|
* 设置用户昵称
|
*
|
* @param biName 用户昵称
|
*/
|
public void setBiName(String biName) {
|
this.biName = biName == null ? null : biName.trim();
|
}
|
|
/**
|
* 获取用户简称
|
*
|
* @return BI_Nick_Name - 用户简称
|
*/
|
public String getBiNickName() {
|
return biNickName;
|
}
|
|
/**
|
* 设置用户简称
|
*
|
* @param biNickName 用户简称
|
*/
|
public void setBiNickName(String biNickName) {
|
this.biNickName = biNickName == null ? null : biNickName.trim();
|
}
|
|
/**
|
* 获取所属公司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();
|
}
|
|
/**
|
* @return BI_Province_Code
|
*/
|
public String getBiProvinceCode() {
|
return biProvinceCode;
|
}
|
|
/**
|
* @param biProvinceCode
|
*/
|
public void setBiProvinceCode(String biProvinceCode) {
|
this.biProvinceCode = biProvinceCode == null ? null : biProvinceCode.trim();
|
}
|
|
/**
|
* @return BI_Province_Name
|
*/
|
public String getBiProvinceName() {
|
return biProvinceName;
|
}
|
|
/**
|
* @param biProvinceName
|
*/
|
public void setBiProvinceName(String biProvinceName) {
|
this.biProvinceName = biProvinceName == null ? null : biProvinceName.trim();
|
}
|
|
/**
|
* @return BI_City_Code
|
*/
|
public String getBiCityCode() {
|
return biCityCode;
|
}
|
|
/**
|
* @param biCityCode
|
*/
|
public void setBiCityCode(String biCityCode) {
|
this.biCityCode = biCityCode == null ? null : biCityCode.trim();
|
}
|
|
/**
|
* @return BI_City_Name
|
*/
|
public String getBiCityName() {
|
return biCityName;
|
}
|
|
/**
|
* @param biCityName
|
*/
|
public void setBiCityName(String biCityName) {
|
this.biCityName = biCityName == null ? null : biCityName.trim();
|
}
|
|
/**
|
* @return BI_District_Code
|
*/
|
public String getBiDistrictCode() {
|
return biDistrictCode;
|
}
|
|
/**
|
* @param biDistrictCode
|
*/
|
public void setBiDistrictCode(String biDistrictCode) {
|
this.biDistrictCode = biDistrictCode == null ? null : biDistrictCode.trim();
|
}
|
|
/**
|
* @return BI_District_Name
|
*/
|
public String getBiDistrictName() {
|
return biDistrictName;
|
}
|
|
/**
|
* @param biDistrictName
|
*/
|
public void setBiDistrictName(String biDistrictName) {
|
this.biDistrictName = biDistrictName == null ? null : biDistrictName.trim();
|
}
|
|
/**
|
* @return BI_Town_Code
|
*/
|
public String getBiTownCode() {
|
return biTownCode;
|
}
|
|
/**
|
* @param biTownCode
|
*/
|
public void setBiTownCode(String biTownCode) {
|
this.biTownCode = biTownCode == null ? null : biTownCode.trim();
|
}
|
|
/**
|
* @return BI_Town_Name
|
*/
|
public String getBiTownName() {
|
return biTownName;
|
}
|
|
/**
|
* @param biTownName
|
*/
|
public void setBiTownName(String biTownName) {
|
this.biTownName = biTownName == null ? null : biTownName.trim();
|
}
|
|
/**
|
* 获取所属物业公司名称id
|
*
|
* @return BI_Management_Company_Id - 所属物业公司名称id
|
*/
|
public String getBiManagementCompanyId() {
|
return biManagementCompanyId;
|
}
|
|
/**
|
* 设置所属物业公司名称id
|
*
|
* @param biManagementCompanyId 所属物业公司名称id
|
*/
|
public void setBiManagementCompanyId(String biManagementCompanyId) {
|
this.biManagementCompanyId = biManagementCompanyId == null ? null : biManagementCompanyId.trim();
|
}
|
|
/**
|
* 获取所属物业公司名称
|
*
|
* @return BI_Management_Company - 所属物业公司名称
|
*/
|
public String getBiManagementCompany() {
|
return biManagementCompany;
|
}
|
|
/**
|
* 设置所属物业公司名称
|
*
|
* @param biManagementCompany 所属物业公司名称
|
*/
|
public void setBiManagementCompany(String biManagementCompany) {
|
this.biManagementCompany = biManagementCompany == null ? null : biManagementCompany.trim();
|
}
|
|
/**
|
* 获取联系人
|
*
|
* @return BI_Contact - 联系人
|
*/
|
public String getBiContact() {
|
return biContact;
|
}
|
|
/**
|
* 设置联系人
|
*
|
* @param biContact 联系人
|
*/
|
public void setBiContact(String biContact) {
|
this.biContact = biContact == null ? null : biContact.trim();
|
}
|
|
/**
|
* 获取联系电话
|
*
|
* @return BI_Telephone - 联系电话
|
*/
|
public String getBiTelephone() {
|
return biTelephone;
|
}
|
|
/**
|
* 设置联系电话
|
*
|
* @param biTelephone 联系电话
|
*/
|
public void setBiTelephone(String biTelephone) {
|
this.biTelephone = biTelephone == null ? null : biTelephone.trim();
|
}
|
|
/**
|
* @return BI_Address
|
*/
|
public String getBiAddress() {
|
return biAddress;
|
}
|
|
/**
|
* @param biAddress
|
*/
|
public void setBiAddress(String biAddress) {
|
this.biAddress = biAddress == null ? null : biAddress.trim();
|
}
|
|
/**
|
* 获取创建时间
|
*
|
* @return BI_Create_Time - 创建时间
|
*/
|
public Date getBiCreateTime() {
|
return biCreateTime;
|
}
|
|
/**
|
* 设置创建时间
|
*
|
* @param biCreateTime 创建时间
|
*/
|
public void setBiCreateTime(Date biCreateTime) {
|
this.biCreateTime = biCreateTime;
|
}
|
|
/**
|
* @return BI_Update_Time
|
*/
|
public Date getBiUpdateTime() {
|
return biUpdateTime;
|
}
|
|
/**
|
* @param biUpdateTime
|
*/
|
public void setBiUpdateTime(Date biUpdateTime) {
|
this.biUpdateTime = biUpdateTime;
|
}
|
|
/**
|
* @return BI_Extension1
|
*/
|
public String getBiExtension1() {
|
return biExtension1;
|
}
|
|
/**
|
* @param biExtension1
|
*/
|
public void setBiExtension1(String biExtension1) {
|
this.biExtension1 = biExtension1 == null ? null : biExtension1.trim();
|
}
|
|
/**
|
* @return BI_Extension2
|
*/
|
public String getBiExtension2() {
|
return biExtension2;
|
}
|
|
/**
|
* @param biExtension2
|
*/
|
public void setBiExtension2(String biExtension2) {
|
this.biExtension2 = biExtension2 == null ? null : biExtension2.trim();
|
}
|
|
/**
|
* @return BI_Extension3
|
*/
|
public String getBiExtension3() {
|
return biExtension3;
|
}
|
|
/**
|
* @param biExtension3
|
*/
|
public void setBiExtension3(String biExtension3) {
|
this.biExtension3 = biExtension3 == null ? null : biExtension3.trim();
|
}
|
|
/**
|
* @return BI_Remark
|
*/
|
public String getBiRemark() {
|
return biRemark;
|
}
|
|
/**
|
* @param biRemark
|
*/
|
public void setBiRemark(String biRemark) {
|
this.biRemark = biRemark == null ? null : biRemark.trim();
|
}
|
}
|