19 changed files with 402 additions and 19 deletions
@ -0,0 +1,36 @@ |
|||||
|
package com.epmet.commons.tools.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2023/5/15 13:44 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class OrgCommonFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 2261315322260807610L; |
||||
|
|
||||
|
public interface AddUserInternalGroup { |
||||
|
} |
||||
|
|
||||
|
public interface AddUserShowGroup extends CustomerClientShowGroup { |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 组织id或者网格id |
||||
|
*/ |
||||
|
@NotBlank(message = "orgId不能为空", groups = AddUserInternalGroup.class) |
||||
|
private String orgId; |
||||
|
/** |
||||
|
* agency |
||||
|
* grid |
||||
|
*/ |
||||
|
@NotBlank(message = "orgType不能为空", groups = AddUserInternalGroup.class) |
||||
|
private String orgType; |
||||
|
} |
||||
|
|
@ -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; |
||||
|
} |
||||
|
|
@ -0,0 +1,17 @@ |
|||||
|
package com.epmet.dto.result.lingshan; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description 灵山大屏-安全生产-生产企业类型统计 |
||||
|
* @Author yzm |
||||
|
* @Date 2023/5/15 13:48 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class DangerousChemicalsTypeStatResultDTO { |
||||
|
private String name; |
||||
|
private Integer value; |
||||
|
private String typeCode; |
||||
|
|
||||
|
} |
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue