7 changed files with 151 additions and 1 deletions
@ -0,0 +1,38 @@ |
|||
package com.epmet.evaluationindex.screen.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 描述一下 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/2/28 14:29 |
|||
*/ |
|||
@Data |
|||
public class SubAgencyIndexRankPyFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 8930332375421099186L; |
|||
/** |
|||
* 当前组织,平阴大屏,默认传跟组织 |
|||
* */ |
|||
@NotBlank(message = "agencyId不能为空") |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 目前只有平阴在传,默认赋值:370124 |
|||
* */ |
|||
@NotBlank(message = "areaCode不能为空;平阴默认传:370124") |
|||
private String areaCode; |
|||
|
|||
/** |
|||
* 默认查询前10条 |
|||
* */ |
|||
@NotNull(message = "topNum不能为空") |
|||
private Integer topNum; |
|||
|
|||
@NotBlank(message = "type不能为空,街道:street;网格:grid") |
|||
private String type; |
|||
} |
Loading…
Reference in new issue