|
|
@ -9,7 +9,7 @@ import com.ruoyi.common.core.domain.TreeEntity; |
|
|
|
|
|
|
|
/** |
|
|
|
* 机构管理对象 dc_organization |
|
|
|
* |
|
|
|
* |
|
|
|
* @author ruoyi |
|
|
|
* @date 2024-01-04 |
|
|
|
*/ |
|
|
@ -23,7 +23,7 @@ public class DcOrganization extends TreeEntity |
|
|
|
|
|
|
|
/** 1-运管中心2-驻点 */ |
|
|
|
@ApiModelProperty(value = "类型1-运管中心 2-驻点", required = true) |
|
|
|
@Excel(name = "1-运管中心 2-驻点") |
|
|
|
@Excel(name = "类型",readConverterExp = "1=运管中心,2=驻点") |
|
|
|
private Integer organizationType; |
|
|
|
|
|
|
|
/** 名称 */ |
|
|
@ -88,34 +88,34 @@ public class DcOrganization extends TreeEntity |
|
|
|
this.id = id; |
|
|
|
} |
|
|
|
|
|
|
|
public Long getId() |
|
|
|
public Long getId() |
|
|
|
{ |
|
|
|
return id; |
|
|
|
} |
|
|
|
public void setOrganizationType(Integer organizationType) |
|
|
|
public void setOrganizationType(Integer organizationType) |
|
|
|
{ |
|
|
|
this.organizationType = organizationType; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getOrganizationType() |
|
|
|
public Integer getOrganizationType() |
|
|
|
{ |
|
|
|
return organizationType; |
|
|
|
} |
|
|
|
public void setOrganizationName(String organizationName) |
|
|
|
public void setOrganizationName(String organizationName) |
|
|
|
{ |
|
|
|
this.organizationName = organizationName; |
|
|
|
} |
|
|
|
|
|
|
|
public String getOrganizationName() |
|
|
|
public String getOrganizationName() |
|
|
|
{ |
|
|
|
return organizationName; |
|
|
|
} |
|
|
|
public void setOrganizationAddress(String organizationAddress) |
|
|
|
public void setOrganizationAddress(String organizationAddress) |
|
|
|
{ |
|
|
|
this.organizationAddress = organizationAddress; |
|
|
|
} |
|
|
|
|
|
|
|
public String getOrganizationAddress() |
|
|
|
public String getOrganizationAddress() |
|
|
|
{ |
|
|
|
return organizationAddress; |
|
|
|
} |
|
|
@ -128,21 +128,21 @@ public class DcOrganization extends TreeEntity |
|
|
|
{ |
|
|
|
return stakeMark; |
|
|
|
} |
|
|
|
public void setRescueUnit(String rescueUnit) |
|
|
|
public void setRescueUnit(String rescueUnit) |
|
|
|
{ |
|
|
|
this.rescueUnit = rescueUnit; |
|
|
|
} |
|
|
|
|
|
|
|
public String getRescueUnit() |
|
|
|
public String getRescueUnit() |
|
|
|
{ |
|
|
|
return rescueUnit; |
|
|
|
} |
|
|
|
public void setDescription(String description) |
|
|
|
public void setDescription(String description) |
|
|
|
{ |
|
|
|
this.description = description; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDescription() |
|
|
|
public String getDescription() |
|
|
|
{ |
|
|
|
return description; |
|
|
|
} |
|
|
|