forked from luyan/epmet-cloud-lingshan
7 changed files with 182 additions and 10 deletions
@ -0,0 +1,15 @@ |
|||
package com.epmet.dto.form.lingshan; |
|||
|
|||
import com.epmet.commons.tools.dto.form.OrgCommonFormDTO; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Description 灵山大屏-安全生产-生产企业类型统计,点击饼图,中间地图显示列表 |
|||
* @Author yzm |
|||
* @Date 2023/5/15 14:59 |
|||
*/ |
|||
@Data |
|||
public class DangerousChemicalsDistributionFormDTO extends OrgCommonFormDTO { |
|||
private String typeCode; |
|||
} |
|||
|
@ -0,0 +1,56 @@ |
|||
package com.epmet.dto.result.lingshan; |
|||
|
|||
/** |
|||
* @Description 灵山大屏-安全生产-生产企业类型统计 点击饼图,列表及详情返参DTO |
|||
* @Author yzm |
|||
* @Date 2023/5/15 15:00 |
|||
*/ |
|||
|
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class DangerousChemicalsTypeStatDetailDTO { |
|||
/** |
|||
* 企业id |
|||
*/ |
|||
private String id; |
|||
/** |
|||
* 企业名称 |
|||
*/ |
|||
private String name; |
|||
/** |
|||
* 企业介绍 |
|||
*/ |
|||
private String content; |
|||
private String longitude; |
|||
private String latitude; |
|||
private String addr; |
|||
/** |
|||
* 联系人 |
|||
*/ |
|||
private String annt; |
|||
/** |
|||
* 联系电话 |
|||
*/ |
|||
private String phone; |
|||
// @JsonIgnore
|
|||
private String category; |
|||
|
|||
/** |
|||
* 类别名称 |
|||
*/ |
|||
private String type; |
|||
/** |
|||
* 是否重点企业 |
|||
*/ |
|||
private Boolean zd; |
|||
/** |
|||
* 包企领导 |
|||
*/ |
|||
private String leader; |
|||
/** |
|||
* 包企干部 |
|||
*/ |
|||
private String cadre; |
|||
} |
|||
|
Loading…
Reference in new issue