5 changed files with 116 additions and 1 deletions
@ -0,0 +1,45 @@ |
|||
package com.epmet.dataaggre.dto.govorg.form; |
|||
|
|||
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author yzm |
|||
* @Date 2022/7/28 11:09 |
|||
*/ |
|||
@Data |
|||
public class CoverageAnalisisDataListLeftFormDTO { |
|||
public interface ShowGroup extends CustomerClientShowGroup { |
|||
} |
|||
|
|||
/** |
|||
* |
|||
*/ |
|||
@NotBlank(message = "组织不能为空", groups = ShowGroup.class) |
|||
private String orgId; |
|||
@NotBlank(message = "组织类型不能为空", groups = ShowGroup.class) |
|||
private String orgType; |
|||
|
|||
/** |
|||
* 图层类型列表 |
|||
*/ |
|||
private List<String> coverageTypes; |
|||
|
|||
/** |
|||
* 分类key |
|||
*/ |
|||
private List<String> categoryKeys; |
|||
|
|||
// 以下3个参数固定
|
|||
private Integer pageNo = 1; |
|||
private Integer pageSize = 20; |
|||
private Boolean isPage = false; |
|||
|
|||
private String customerId; |
|||
private String staffId; |
|||
} |
|||
|
@ -0,0 +1,26 @@ |
|||
package com.epmet.dataaggre.dto.govorg.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author yzm |
|||
* @Date 2022/7/28 11:13 |
|||
*/ |
|||
@Data |
|||
public class CoverageAnalisisDataListResultDTOV2 { |
|||
/** |
|||
* 维度 |
|||
*/ |
|||
private String latitude; |
|||
|
|||
/** |
|||
* 经度 |
|||
*/ |
|||
private String longitude; |
|||
|
|||
private List<CoverageAnalisisDataListResultDTO> dataList; |
|||
} |
|||
|
Loading…
Reference in new issue