package com.gk.hotwork.Domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@TableName("company")
|
public class CompanyInfo implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** 单位代码 code **/
|
private String code;
|
|
/** 单位名称 company **/
|
private String company;
|
|
/** 是否为主体单位 ismain **/
|
private Byte ismain;
|
|
/** 联系人 contactname **/
|
private String contactname;
|
|
/** 联系电话 contactphone **/
|
private String contactphone;
|
|
/** 省份 province **/
|
private String province;
|
|
/** 城市 city **/
|
private String city;
|
|
/** 区县 area **/
|
private String area;
|
|
/** 乡镇 town **/
|
private String town;
|
|
/** 社区 community **/
|
private String community;
|
|
/** 是否删除 isdel **/
|
private Byte isdel;
|
|
/** 创建人 createdby **/
|
private String createdby;
|
|
/** 创建时间 createddate **/
|
private Date createddate;
|
|
/** 更新人 lastmodifiedby **/
|
private String lastmodifiedby;
|
|
/** 更新时间 lastmodifieddate **/
|
private Date lastmodifieddate;
|
|
private String longitude;
|
|
private String latitude;
|
|
private Byte isbanned;
|
|
/** id id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** id id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** 名称 company **/
|
public String getCompany() {
|
return company;
|
}
|
|
/** 名称 company **/
|
public void setCompany(String company) {
|
this.company = company == null ? null : company.trim();
|
}
|
|
/** 联系人 contactname **/
|
public String getContactname() {
|
return contactname;
|
}
|
|
/** 联系人 contactname **/
|
public void setContactname(String contactname) {
|
this.contactname = contactname == null ? null : contactname.trim();
|
}
|
|
/** 联系电话 contactphone **/
|
public String getContactphone() {
|
return contactphone;
|
}
|
|
/** 联系电话 contactphone **/
|
public void setContactphone(String contactphone) {
|
this.contactphone = contactphone == null ? null : contactphone.trim();
|
}
|
|
/** 省份 province **/
|
public String getProvince() {
|
return province;
|
}
|
|
/** 省份 province **/
|
public void setProvince(String province) {
|
this.province = province == null ? null : province.trim();
|
}
|
|
/** 城市 city **/
|
public String getCity() {
|
return city;
|
}
|
|
/** 城市 city **/
|
public void setCity(String city) {
|
this.city = city == null ? null : city.trim();
|
}
|
|
/** 区县 area **/
|
public String getArea() {
|
return area;
|
}
|
|
/** 区县 area **/
|
public void setArea(String area) {
|
this.area = area == null ? null : area.trim();
|
}
|
|
/** 乡镇 town **/
|
public String getTown() {
|
return town;
|
}
|
|
/** 乡镇 town **/
|
public void setTown(String town) {
|
this.town = town == null ? null : town.trim();
|
}
|
|
/** 社区 community **/
|
public String getCommunity() {
|
return community;
|
}
|
|
/** 社区 community **/
|
public void setCommunity(String community) {
|
this.community = community == null ? null : community.trim();
|
}
|
|
/** 是否删除 isdel **/
|
public Byte getIsdel() {
|
return isdel;
|
}
|
|
/** 是否删除 isdel **/
|
public void setIsdel(Byte isdel) {
|
this.isdel = isdel;
|
}
|
|
public String getCreatedby() {
|
return createdby;
|
}
|
|
public void setCreatedby(String createdby) {
|
this.createdby = createdby;
|
}
|
|
public Date getCreateddate() {
|
return createddate;
|
}
|
|
public void setCreateddate(Date createddate) {
|
this.createddate = createddate;
|
}
|
|
public String getLastmodifiedby() {
|
return lastmodifiedby;
|
}
|
|
public void setLastmodifiedby(String lastmodifiedby) {
|
this.lastmodifiedby = lastmodifiedby;
|
}
|
|
public Date getLastmodifieddate() {
|
return lastmodifieddate;
|
}
|
|
public void setLastmodifieddate(Date lastmodifieddate) {
|
this.lastmodifieddate = lastmodifieddate;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public Byte getIsmain() {
|
return ismain;
|
}
|
|
public void setIsmain(Byte ismain) {
|
this.ismain = ismain;
|
}
|
|
public String getLongitude() {
|
return longitude;
|
}
|
|
public void setLongitude(String longitude) {
|
this.longitude = longitude;
|
}
|
|
public String getLatitude() {
|
return latitude;
|
}
|
|
public void setLatitude(String latitude) {
|
this.latitude = latitude;
|
}
|
|
public Byte getIsbanned() {
|
return isbanned;
|
}
|
|
public void setIsbanned(Byte isbanned) {
|
this.isbanned = isbanned;
|
}
|
}
|