package com.landtool.lanbase.modules.org.entity;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @Description: 单位关联行政的POJO{@link OrgUnit}{@link OrgRegion}
|
* @Author: bing.guo
|
* @Date: 15:46 2018/1/31
|
*
|
*/
|
public class OrgUnitJoinRegion {
|
|
//单位或部门ID
|
private Long unitid;
|
//单位父ID(顶级为0)
|
private Long parentid;
|
//单位名称
|
private String unitname;
|
//单位编码
|
private String unidcode;
|
//单位组织机构代码
|
private String unidorgcode;
|
//单位名称拼音首字母
|
private String spellfirst;
|
//单位简称
|
private String unitshort;
|
//单位类型(A:行政单位、B:监测单位、C信息中心)字典
|
private String unittype;
|
//记录排序
|
private String rorder;
|
//联系电话
|
private String contactnumber;
|
//传真
|
private String faxnumber;
|
//E-Mail地址
|
private String email;
|
//单位地址
|
private String address;
|
//邮政编码
|
private String postalcode;
|
//图片路径
|
private String photourl;
|
//网站地址
|
private String websiteurl;
|
//机构状态1 表示正常、2 删除、9 表示注销
|
private Long status;
|
//地图比例尺
|
private String mapscales;
|
//X坐标
|
private String mapcenterpointx;
|
//Y坐标
|
private String mapcenterpointy;
|
//记录添加时间
|
private Date rcreatedate;
|
//记录添加人中文名
|
private Long rcreateuser;
|
//记录修改时间戳
|
private Date rlasteditdate;
|
//备注
|
private String remark;
|
//是否为部门 0单位 1部门
|
private Long isdept;
|
//所属行政对象
|
private List<OrgUnitRegion> orgunitregion;
|
|
/**
|
* 设置:单位或部门ID
|
*/
|
public void setUnitid(Long unitid) {
|
this.unitid = unitid;
|
}
|
/**
|
* 获取:单位或部门ID
|
*/
|
public Long getUnitid() {
|
return unitid;
|
}
|
/**
|
* 设置:单位父ID(顶级为0)
|
*/
|
public void setParentid(Long parentid) {
|
this.parentid = parentid;
|
}
|
/**
|
* 获取:单位父ID(顶级为0)
|
*/
|
public Long getParentid() {
|
return parentid;
|
}
|
/**
|
* 设置:单位名称
|
*/
|
public void setUnitname(String unitname) {
|
this.unitname = unitname;
|
}
|
/**
|
* 获取:单位名称
|
*/
|
public String getUnitname() {
|
return unitname;
|
}
|
/**
|
* 设置:单位编码
|
*/
|
public void setUnidcode(String unidcode) {
|
this.unidcode = unidcode;
|
}
|
/**
|
* 获取:单位编码
|
*/
|
public String getUnidcode() {
|
return unidcode;
|
}
|
/**
|
* 设置:单位组织机构代码
|
*/
|
public void setUnidorgcode(String unidorgcode) {
|
this.unidorgcode = unidorgcode;
|
}
|
/**
|
* 获取:单位组织机构代码
|
*/
|
public String getUnidorgcode() {
|
return unidorgcode;
|
}
|
/**
|
* 设置:单位名称拼音首字母
|
*/
|
public void setSpellfirst(String spellfirst) {
|
this.spellfirst = spellfirst;
|
}
|
/**
|
* 获取:单位名称拼音首字母
|
*/
|
public String getSpellfirst() {
|
return spellfirst;
|
}
|
/**
|
* 设置:单位简称
|
*/
|
public void setUnitshort(String unitshort) {
|
this.unitshort = unitshort;
|
}
|
/**
|
* 获取:单位简称
|
*/
|
public String getUnitshort() {
|
return unitshort;
|
}
|
/**
|
* 设置:单位类型(A:行政单位、B:监测单位、C信息中心)字典
|
*/
|
public void setUnittype(String unittype) {
|
this.unittype = unittype;
|
}
|
/**
|
* 获取:单位类型(A:行政单位、B:监测单位、C信息中心)字典
|
*/
|
public String getUnittype() {
|
return unittype;
|
}
|
/**
|
* 设置:记录排序
|
*/
|
public void setRorder(String rorder) {
|
this.rorder = rorder;
|
}
|
/**
|
* 获取:记录排序
|
*/
|
public String getRorder() {
|
return rorder;
|
}
|
/**
|
* 设置:联系电话
|
*/
|
public void setContactnumber(String contactnumber) {
|
this.contactnumber = contactnumber;
|
}
|
/**
|
* 获取:联系电话
|
*/
|
public String getContactnumber() {
|
return contactnumber;
|
}
|
/**
|
* 设置:传真
|
*/
|
public void setFaxnumber(String faxnumber) {
|
this.faxnumber = faxnumber;
|
}
|
/**
|
* 获取:传真
|
*/
|
public String getFaxnumber() {
|
return faxnumber;
|
}
|
/**
|
* 设置:E-Mail地址
|
*/
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
/**
|
* 获取:E-Mail地址
|
*/
|
public String getEmail() {
|
return email;
|
}
|
/**
|
* 设置:单位地址
|
*/
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
/**
|
* 获取:单位地址
|
*/
|
public String getAddress() {
|
return address;
|
}
|
/**
|
* 设置:邮政编码
|
*/
|
public void setPostalcode(String postalcode) {
|
this.postalcode = postalcode;
|
}
|
/**
|
* 获取:邮政编码
|
*/
|
public String getPostalcode() {
|
return postalcode;
|
}
|
/**
|
* 设置:图片路径
|
*/
|
public void setPhotourl(String photourl) {
|
this.photourl = photourl;
|
}
|
/**
|
* 获取:图片路径
|
*/
|
public String getPhotourl() {
|
return photourl;
|
}
|
/**
|
* 设置:网站地址
|
*/
|
public void setWebsiteurl(String websiteurl) {
|
this.websiteurl = websiteurl;
|
}
|
/**
|
* 获取:网站地址
|
*/
|
public String getWebsiteurl() {
|
return websiteurl;
|
}
|
/**
|
* 设置:机构状态1 表示正常、2 删除、9 表示注销
|
*/
|
public void setStatus(Long status) {
|
this.status = status;
|
}
|
/**
|
* 获取:机构状态1 表示正常、2 删除、9 表示注销
|
*/
|
public Long getStatus() {
|
return status;
|
}
|
/**
|
* 设置:地图比例尺
|
*/
|
public void setMapscales(String mapscales) {
|
this.mapscales = mapscales;
|
}
|
/**
|
* 获取:地图比例尺
|
*/
|
public String getMapscales() {
|
return mapscales;
|
}
|
/**
|
* 设置:X坐标
|
*/
|
public void setMapcenterpointx(String mapcenterpointx) {
|
this.mapcenterpointx = mapcenterpointx;
|
}
|
/**
|
* 获取:X坐标
|
*/
|
public String getMapcenterpointx() {
|
return mapcenterpointx;
|
}
|
/**
|
* 设置:Y坐标
|
*/
|
public void setMapcenterpointy(String mapcenterpointy) {
|
this.mapcenterpointy = mapcenterpointy;
|
}
|
/**
|
* 获取:Y坐标
|
*/
|
public String getMapcenterpointy() {
|
return mapcenterpointy;
|
}
|
/**
|
* 设置:记录添加时间
|
*/
|
public void setRcreatedate(Date rcreatedate) {
|
this.rcreatedate = rcreatedate;
|
}
|
/**
|
* 获取:记录添加时间
|
*/
|
public Date getRcreatedate() {
|
return rcreatedate;
|
}
|
/**
|
* 设置:记录添加人中文名
|
*/
|
public void setRcreateuser(Long rcreateuser) {
|
this.rcreateuser = rcreateuser;
|
}
|
/**
|
* 获取:记录添加人中文名
|
*/
|
public Long getRcreateuser() {
|
return rcreateuser;
|
}
|
/**
|
* 设置:记录修改时间戳
|
*/
|
public void setRlasteditdate(Date rlasteditdate) {
|
this.rlasteditdate = rlasteditdate;
|
}
|
/**
|
* 获取:记录修改时间戳
|
*/
|
public Date getRlasteditdate() {
|
return rlasteditdate;
|
}
|
/**
|
* 设置:备注
|
*/
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
/**
|
* 获取:备注
|
*/
|
public String getRemark() {
|
return remark;
|
}
|
/**
|
* 设置:是否为部门 0单位 1部门
|
*/
|
public void setIsdept(Long isdept) {
|
this.isdept = isdept;
|
}
|
/**
|
* 获取:是否为部门 0单位 1部门
|
*/
|
public Long getIsdept() {
|
return isdept;
|
}
|
public List<OrgUnitRegion> getOrgunitregion() {
|
return orgunitregion;
|
}
|
public void setOrgunitregion(List<OrgUnitRegion> orgunitregion) {
|
this.orgunitregion = orgunitregion;
|
}
|
|
}
|