6 changed files with 109 additions and 0 deletions
@ -0,0 +1,38 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/12/8 10:14 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectDistributionAnalysisRightDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 7233782006110358477L; |
||||
|
|
||||
|
/** |
||||
|
* 组织ID |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
|
||||
|
/** |
||||
|
* 组织类型,组织:agency,网格:grid |
||||
|
*/ |
||||
|
private String orgType; |
||||
|
|
||||
|
/** |
||||
|
* 热力值 |
||||
|
*/ |
||||
|
private Integer count; |
||||
|
|
||||
|
public ProjectDistributionAnalysisRightDTO() { |
||||
|
this.orgId = ""; |
||||
|
this.orgType = ""; |
||||
|
this.count = NumConstant.ZERO; |
||||
|
} |
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/12/8 10:11 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectDistributionAnalysisRightResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 8359144215262197796L; |
||||
|
|
||||
|
/** |
||||
|
* ..以上 |
||||
|
*/ |
||||
|
private String under; |
||||
|
|
||||
|
/** |
||||
|
* 中间区间 |
||||
|
*/ |
||||
|
private String middle; |
||||
|
/** |
||||
|
* ..以下 |
||||
|
*/ |
||||
|
private String above; |
||||
|
|
||||
|
private List<ProjectDistributionAnalysisRightDTO> list; |
||||
|
} |
Loading…
Reference in new issue