9 changed files with 260 additions and 21 deletions
@ -0,0 +1,183 @@ |
|||||
|
package com.zc.business.domain; |
||||
|
|
||||
|
import com.ruoyi.common.annotation.Excel; |
||||
|
import com.ruoyi.common.core.domain.TreeEntity; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import org.apache.commons.lang3.builder.ToStringBuilder; |
||||
|
import org.apache.commons.lang3.builder.ToStringStyle; |
||||
|
|
||||
|
/** |
||||
|
* @author 王思祥 |
||||
|
* @ClassName DcOrganizationExport |
||||
|
*/ |
||||
|
|
||||
|
public class DcOrganizationExport extends TreeEntity { |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** $column.columnComment */ |
||||
|
private Long id; |
||||
|
|
||||
|
/** 1-运管中心2-驻点 */ |
||||
|
@ApiModelProperty(value = "类型1-运管中心 2-驻点", required = true) |
||||
|
@Excel(name = "1-运管中心 2-驻点") |
||||
|
private Integer organizationType; |
||||
|
|
||||
|
/** 名称 */ |
||||
|
@ApiModelProperty(value = "名称", required = true) |
||||
|
@Excel(name = "名称") |
||||
|
private String organizationName; |
||||
|
|
||||
|
/** 地址 */ |
||||
|
@ApiModelProperty("地址") |
||||
|
@Excel(name = "地址") |
||||
|
private String organizationAddress; |
||||
|
|
||||
|
/** 桩号 */ |
||||
|
@ApiModelProperty("桩号") |
||||
|
@Excel(name = "桩号") |
||||
|
private String stakeMark; |
||||
|
|
||||
|
/** 救援单位 */ |
||||
|
@ApiModelProperty("救援单位") |
||||
|
@Excel(name = "救援单位") |
||||
|
private String rescueUnit; |
||||
|
|
||||
|
/** 描述 */ |
||||
|
@ApiModelProperty("描述") |
||||
|
@Excel(name = "描述") |
||||
|
private String description; |
||||
|
/** 方向 */ |
||||
|
@ApiModelProperty(value = "方向", required = true) |
||||
|
@Excel(name = "方向") |
||||
|
private String direction; |
||||
|
/** 机构人员数量 */ |
||||
|
@ApiModelProperty(value = "机构人员数量", required = true) |
||||
|
@Excel(name = "机构人员数量") |
||||
|
private String employeesNum; |
||||
|
/** 经度 */ |
||||
|
@ApiModelProperty(value = "经度", required = true) |
||||
|
@Excel(name = "经度") |
||||
|
private String longitude; |
||||
|
/** 纬度 */ |
||||
|
@ApiModelProperty(value = "纬度", required = true) |
||||
|
@Excel(name = "纬度") |
||||
|
private String latitude; |
||||
|
|
||||
|
|
||||
|
|
||||
|
public String getEmployeesNum() { |
||||
|
return employeesNum; |
||||
|
} |
||||
|
|
||||
|
public void setEmployeesNum(String employeesNum) { |
||||
|
this.employeesNum = employeesNum; |
||||
|
} |
||||
|
|
||||
|
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 String getDirection() { |
||||
|
return direction; |
||||
|
} |
||||
|
|
||||
|
public void setDirection(String direction) { |
||||
|
this.direction = direction; |
||||
|
} |
||||
|
|
||||
|
public void setId(Long id) |
||||
|
{ |
||||
|
this.id = id; |
||||
|
} |
||||
|
|
||||
|
public Long getId() |
||||
|
{ |
||||
|
return id; |
||||
|
} |
||||
|
public void setOrganizationType(Integer organizationType) |
||||
|
{ |
||||
|
this.organizationType = organizationType; |
||||
|
} |
||||
|
|
||||
|
public Integer getOrganizationType() |
||||
|
{ |
||||
|
return organizationType; |
||||
|
} |
||||
|
public void setOrganizationName(String organizationName) |
||||
|
{ |
||||
|
this.organizationName = organizationName; |
||||
|
} |
||||
|
|
||||
|
public String getOrganizationName() |
||||
|
{ |
||||
|
return organizationName; |
||||
|
} |
||||
|
public void setOrganizationAddress(String organizationAddress) |
||||
|
{ |
||||
|
this.organizationAddress = organizationAddress; |
||||
|
} |
||||
|
|
||||
|
public String getOrganizationAddress() |
||||
|
{ |
||||
|
return organizationAddress; |
||||
|
} |
||||
|
public void setStakeMark(String stakeMark) |
||||
|
{ |
||||
|
this.stakeMark = stakeMark; |
||||
|
} |
||||
|
|
||||
|
public String getStakeMark() |
||||
|
{ |
||||
|
return stakeMark; |
||||
|
} |
||||
|
public void setRescueUnit(String rescueUnit) |
||||
|
{ |
||||
|
this.rescueUnit = rescueUnit; |
||||
|
} |
||||
|
|
||||
|
public String getRescueUnit() |
||||
|
{ |
||||
|
return rescueUnit; |
||||
|
} |
||||
|
public void setDescription(String description) |
||||
|
{ |
||||
|
this.description = description; |
||||
|
} |
||||
|
|
||||
|
public String getDescription() |
||||
|
{ |
||||
|
return description; |
||||
|
} |
||||
|
|
||||
|
@Override |
||||
|
public String toString() { |
||||
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
||||
|
.append("id", getId()) |
||||
|
.append("parentId", getParentId()) |
||||
|
.append("organizationType", getOrganizationType()) |
||||
|
.append("organizationName", getOrganizationName()) |
||||
|
.append("organizationAddress", getOrganizationAddress()) |
||||
|
.append("stakeMark", getStakeMark()) |
||||
|
.append("rescueUnit", getRescueUnit()) |
||||
|
.append("description", getDescription()) |
||||
|
.append("createTime", getCreateTime()) |
||||
|
.append("updateTime", getUpdateTime()) |
||||
|
.toString(); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue