|
|
|
@ -1,11 +1,11 @@ |
|
|
|
|
package com.cjy.enterprise.domain; |
|
|
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
|
import com.ruoyi.common.annotation.Excel; |
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity; |
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle; |
|
|
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 企业信息对象 ti_enterprise_info |
|
|
|
@ -13,228 +13,247 @@ import com.ruoyi.common.core.domain.BaseEntity; |
|
|
|
|
* @author ruoyi |
|
|
|
|
* @date 2023-02-19 |
|
|
|
|
*/ |
|
|
|
|
public class EnterpriseInfo extends BaseEntity |
|
|
|
|
{ |
|
|
|
|
public class EnterpriseInfo extends BaseEntity { |
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
|
/** 主键 */ |
|
|
|
|
/** |
|
|
|
|
* 主键 |
|
|
|
|
*/ |
|
|
|
|
private Long id; |
|
|
|
|
|
|
|
|
|
/** 机构编码 */ |
|
|
|
|
/** |
|
|
|
|
* 机构编码 |
|
|
|
|
*/ |
|
|
|
|
@Excel(name = "机构编码") |
|
|
|
|
private String organCode; |
|
|
|
|
private Long organCode; |
|
|
|
|
|
|
|
|
|
/** 机构名称 */ |
|
|
|
|
/** |
|
|
|
|
* 机构名称 |
|
|
|
|
*/ |
|
|
|
|
@Excel(name = "机构名称") |
|
|
|
|
private String organName; |
|
|
|
|
|
|
|
|
|
/** 经营位置-区域编码 */ |
|
|
|
|
/** |
|
|
|
|
* 经营位置-区域编码 |
|
|
|
|
*/ |
|
|
|
|
private Integer location; |
|
|
|
|
|
|
|
|
|
/** 详细地址 */ |
|
|
|
|
/** |
|
|
|
|
* 详细地址 |
|
|
|
|
*/ |
|
|
|
|
private String address; |
|
|
|
|
|
|
|
|
|
/** 地图坐标精度 */ |
|
|
|
|
/** |
|
|
|
|
* 地图坐标精度 |
|
|
|
|
*/ |
|
|
|
|
private String accuracy; |
|
|
|
|
|
|
|
|
|
/** 地图坐标维度 */ |
|
|
|
|
/** |
|
|
|
|
* 地图坐标维度 |
|
|
|
|
*/ |
|
|
|
|
private String dimension; |
|
|
|
|
|
|
|
|
|
/** 是否是组织机构 1:是 2:否 */ |
|
|
|
|
/** |
|
|
|
|
* 是否是组织机构 1:是 2:否 |
|
|
|
|
*/ |
|
|
|
|
private Integer isOrgan; |
|
|
|
|
|
|
|
|
|
/** 联系人 */ |
|
|
|
|
/** |
|
|
|
|
* 联系人 |
|
|
|
|
*/ |
|
|
|
|
private String contactPerson; |
|
|
|
|
|
|
|
|
|
/** 联系电话 */ |
|
|
|
|
/** |
|
|
|
|
* 联系电话 |
|
|
|
|
*/ |
|
|
|
|
private String contactNumber; |
|
|
|
|
|
|
|
|
|
/** 网站地址 */ |
|
|
|
|
/** |
|
|
|
|
* 网站地址 |
|
|
|
|
*/ |
|
|
|
|
@Excel(name = "网站地址") |
|
|
|
|
private String websiteUrl; |
|
|
|
|
|
|
|
|
|
/** 登录页logo地址 */ |
|
|
|
|
/** |
|
|
|
|
* 登录页logo地址 |
|
|
|
|
*/ |
|
|
|
|
private String loginLogo; |
|
|
|
|
|
|
|
|
|
/** 登录页背景地址 */ |
|
|
|
|
/** |
|
|
|
|
* 登录页背景地址 |
|
|
|
|
*/ |
|
|
|
|
private String loginBackground; |
|
|
|
|
|
|
|
|
|
/** 创建人id */ |
|
|
|
|
/** |
|
|
|
|
* 创建人id |
|
|
|
|
*/ |
|
|
|
|
private Long createrUserId; |
|
|
|
|
|
|
|
|
|
/** 创建时间 */ |
|
|
|
|
/** |
|
|
|
|
* 创建时间 |
|
|
|
|
*/ |
|
|
|
|
private Date createrTime; |
|
|
|
|
|
|
|
|
|
/** 修改人id */ |
|
|
|
|
/** |
|
|
|
|
* 修改人id |
|
|
|
|
*/ |
|
|
|
|
private Long updateUserId; |
|
|
|
|
|
|
|
|
|
/** 状态 启用:0 停用/禁用: 1 */ |
|
|
|
|
/** |
|
|
|
|
* 状态 启用:0 停用/禁用: 1 |
|
|
|
|
*/ |
|
|
|
|
private Integer status; |
|
|
|
|
|
|
|
|
|
/** 数据状态 新增:0 修改:1删除:2 */ |
|
|
|
|
/** |
|
|
|
|
* 数据状态 新增:0 修改:1删除:2 |
|
|
|
|
*/ |
|
|
|
|
private Integer dataStatus; |
|
|
|
|
/**登录页标题*/ |
|
|
|
|
/** |
|
|
|
|
* 登录页标题 |
|
|
|
|
*/ |
|
|
|
|
private String loginTitle; |
|
|
|
|
public void setId(Long id) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setId(Long id) { |
|
|
|
|
this.id = id; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Long getId() |
|
|
|
|
{ |
|
|
|
|
public Long getId() { |
|
|
|
|
return id; |
|
|
|
|
} |
|
|
|
|
public void setOrganCode(String organCode) |
|
|
|
|
{ |
|
|
|
|
this.organCode = organCode; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getOrganCode() |
|
|
|
|
{ |
|
|
|
|
public Long getOrganCode() { |
|
|
|
|
return organCode; |
|
|
|
|
} |
|
|
|
|
public void setOrganName(String organName) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setOrganCode(Long organCode) { |
|
|
|
|
this.organCode = organCode; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setOrganName(String organName) { |
|
|
|
|
this.organName = organName; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getOrganName() |
|
|
|
|
{ |
|
|
|
|
public String getOrganName() { |
|
|
|
|
return organName; |
|
|
|
|
} |
|
|
|
|
public void setLocation(Integer location) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setLocation(Integer location) { |
|
|
|
|
this.location = location; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getLocation() |
|
|
|
|
{ |
|
|
|
|
public Integer getLocation() { |
|
|
|
|
return location; |
|
|
|
|
} |
|
|
|
|
public void setAddress(String address) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setAddress(String address) { |
|
|
|
|
this.address = address; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getAddress() |
|
|
|
|
{ |
|
|
|
|
public String getAddress() { |
|
|
|
|
return address; |
|
|
|
|
} |
|
|
|
|
public void setAccuracy(String accuracy) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setAccuracy(String accuracy) { |
|
|
|
|
this.accuracy = accuracy; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getAccuracy() |
|
|
|
|
{ |
|
|
|
|
public String getAccuracy() { |
|
|
|
|
return accuracy; |
|
|
|
|
} |
|
|
|
|
public void setDimension(String dimension) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setDimension(String dimension) { |
|
|
|
|
this.dimension = dimension; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getDimension() |
|
|
|
|
{ |
|
|
|
|
public String getDimension() { |
|
|
|
|
return dimension; |
|
|
|
|
} |
|
|
|
|
public void setIsOrgan(Integer isOrgan) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setIsOrgan(Integer isOrgan) { |
|
|
|
|
this.isOrgan = isOrgan; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getIsOrgan() |
|
|
|
|
{ |
|
|
|
|
public Integer getIsOrgan() { |
|
|
|
|
return isOrgan; |
|
|
|
|
} |
|
|
|
|
public void setContactPerson(String contactPerson) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setContactPerson(String contactPerson) { |
|
|
|
|
this.contactPerson = contactPerson; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getContactPerson() |
|
|
|
|
{ |
|
|
|
|
public String getContactPerson() { |
|
|
|
|
return contactPerson; |
|
|
|
|
} |
|
|
|
|
public void setContactNumber(String contactNumber) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setContactNumber(String contactNumber) { |
|
|
|
|
this.contactNumber = contactNumber; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getContactNumber() |
|
|
|
|
{ |
|
|
|
|
public String getContactNumber() { |
|
|
|
|
return contactNumber; |
|
|
|
|
} |
|
|
|
|
public void setWebsiteUrl(String websiteUrl) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setWebsiteUrl(String websiteUrl) { |
|
|
|
|
this.websiteUrl = websiteUrl; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getWebsiteUrl() |
|
|
|
|
{ |
|
|
|
|
public String getWebsiteUrl() { |
|
|
|
|
return websiteUrl; |
|
|
|
|
} |
|
|
|
|
public void setLoginLogo(String loginLogo) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setLoginLogo(String loginLogo) { |
|
|
|
|
this.loginLogo = loginLogo; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getLoginLogo() |
|
|
|
|
{ |
|
|
|
|
public String getLoginLogo() { |
|
|
|
|
return loginLogo; |
|
|
|
|
} |
|
|
|
|
public void setLoginBackground(String loginBackground) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setLoginBackground(String loginBackground) { |
|
|
|
|
this.loginBackground = loginBackground; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getLoginBackground() |
|
|
|
|
{ |
|
|
|
|
public String getLoginBackground() { |
|
|
|
|
return loginBackground; |
|
|
|
|
} |
|
|
|
|
public void setCreaterUserId(Long createrUserId) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setCreaterUserId(Long createrUserId) { |
|
|
|
|
this.createrUserId = createrUserId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Long getCreaterUserId() |
|
|
|
|
{ |
|
|
|
|
public Long getCreaterUserId() { |
|
|
|
|
return createrUserId; |
|
|
|
|
} |
|
|
|
|
public void setCreaterTime(Date createrTime) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setCreaterTime(Date createrTime) { |
|
|
|
|
this.createrTime = createrTime; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Date getCreaterTime() |
|
|
|
|
{ |
|
|
|
|
public Date getCreaterTime() { |
|
|
|
|
return createrTime; |
|
|
|
|
} |
|
|
|
|
public void setUpdateUserId(Long updateUserId) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setUpdateUserId(Long updateUserId) { |
|
|
|
|
this.updateUserId = updateUserId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Long getUpdateUserId() |
|
|
|
|
{ |
|
|
|
|
public Long getUpdateUserId() { |
|
|
|
|
return updateUserId; |
|
|
|
|
} |
|
|
|
|
public void setStatus(Integer status) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setStatus(Integer status) { |
|
|
|
|
this.status = status; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getStatus() |
|
|
|
|
{ |
|
|
|
|
public Integer getStatus() { |
|
|
|
|
return status; |
|
|
|
|
} |
|
|
|
|
public void setDataStatus(Integer dataStatus) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
public void setDataStatus(Integer dataStatus) { |
|
|
|
|
this.dataStatus = dataStatus; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getDataStatus() |
|
|
|
|
{ |
|
|
|
|
public Integer getDataStatus() { |
|
|
|
|
return dataStatus; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -248,7 +267,7 @@ public class EnterpriseInfo extends BaseEntity |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public String toString() { |
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
|
|
|
|
.append("id", getId()) |
|
|
|
|
.append("organCode", getOrganCode()) |
|
|
|
|
.append("organName", getOrganName()) |
|
|
|
|