forked from rongchao/epmet-cloud-rizhao
7 changed files with 195 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||||
|
package com.epmet.dto.form.resi; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description 烟台居民画像入参 |
||||
|
* @Author yzm |
||||
|
* @Date 2023/4/11 17:03 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ResiPortrayalCommonFormDTO { |
||||
|
/** |
||||
|
* /gov/org/customeragency/agencygridtree返回的agencyId |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
/** |
||||
|
* /gov/org/customeragency/agencygridtree返回level=grid时,orgType:grid;其他情况orgType:agency |
||||
|
*/ |
||||
|
private String orgType; |
||||
|
} |
||||
|
|
@ -0,0 +1,28 @@ |
|||||
|
package com.epmet.dto.result.resi; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description 烟台居民画像返参 |
||||
|
* @Author yzm |
||||
|
* @Date 2023/4/11 17:04 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ResiPortrayalResultDTO { |
||||
|
/** |
||||
|
* 居民数量 |
||||
|
*/ |
||||
|
private Integer totalResi; |
||||
|
/** |
||||
|
* 年龄分布:50岁以下:0;50-59岁:1;60-69岁:2;70-79岁:3;80岁以上:4 |
||||
|
* 学历分布:学历key |
||||
|
*/ |
||||
|
private String code; |
||||
|
|
||||
|
/** |
||||
|
* 学历分布:小学及文盲/初中..... |
||||
|
* 年龄分布:50岁以下/50-59岁/60-69岁/70-79岁/80岁以上 |
||||
|
*/ |
||||
|
private String codeName; |
||||
|
} |
||||
|
|
Loading…
Reference in new issue