14 changed files with 337 additions and 10 deletions
@ -0,0 +1,34 @@ |
|||
package com.elink.esua.epdc.dto.epdc.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.Min; |
|||
import javax.validation.constraints.NotBlank; |
|||
|
|||
/** |
|||
* @author songyunpeng |
|||
* @Description 大屏网格排名参数 |
|||
* @create 2020-09-14 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenGridRankingFormDTO { |
|||
|
|||
/** |
|||
* 页码 |
|||
*/ |
|||
@Min(value = 1, message = "页码必须大于0") |
|||
private Integer pageIndex; |
|||
|
|||
/** |
|||
* 页容量 |
|||
*/ |
|||
@Min(value = 1, message = "页容量必须大于0") |
|||
private Integer pageSize; |
|||
|
|||
/** |
|||
* 排序依据 |
|||
*/ |
|||
@NotBlank(message = "排序依据不能为空") |
|||
private String rankCategory; |
|||
|
|||
} |
@ -0,0 +1,20 @@ |
|||
package com.elink.esua.epdc.dto.epdc.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author songyunpeng |
|||
* @Description 大屏房屋用途接口结果 |
|||
* @create 2020-09-14 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenGridRankingResultDTO { |
|||
/** |
|||
* 网格名 |
|||
*/ |
|||
private String gridName; |
|||
/** |
|||
* 数量 |
|||
*/ |
|||
private Integer total; |
|||
} |
@ -0,0 +1,58 @@ |
|||
package com.elink.esua.epdc.dto.epdc.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author songyunpeng |
|||
* @Description 大屏房屋用途接口结果 |
|||
* @create 2020-09-14 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenHouseUseResultDTO { |
|||
/** |
|||
* 房屋数量 |
|||
*/ |
|||
private Integer houseNum; |
|||
/** |
|||
* 人口数量 |
|||
*/ |
|||
private Integer populationNum; |
|||
/** |
|||
* 机动车数量 |
|||
*/ |
|||
private Integer motorVehicleNum; |
|||
/** |
|||
* 党员 |
|||
*/ |
|||
private Integer partyMemberNum; |
|||
/** |
|||
* 企业数量 |
|||
*/ |
|||
private Integer enterpriseNum; |
|||
/** |
|||
* 租赁数量 |
|||
*/ |
|||
private Integer rentNumber; |
|||
/** |
|||
* 自住数量 |
|||
*/ |
|||
private Integer sinceTheLivingNumber; |
|||
/** |
|||
* 经营数量 |
|||
*/ |
|||
private Integer businessNumber; |
|||
/** |
|||
* 租赁百分比 |
|||
*/ |
|||
private Integer rentPercent; |
|||
/** |
|||
* 自住百分比 |
|||
*/ |
|||
private Integer sinceTheLivingNumberPercent; |
|||
/** |
|||
* 经营百分比 |
|||
*/ |
|||
private Integer businessPercent; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue