8 changed files with 140 additions and 8 deletions
@ -0,0 +1,37 @@ |
|||
package com.epmet.evaluationindex.screen.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* desc:下级组织单项排行分数 form |
|||
* |
|||
* @DateTime 2020/8/20 9:54 上午 |
|||
*/ |
|||
@Data |
|||
public class SubSingleIndexRankFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -2920561669035794486L; |
|||
@NotBlank(message = "客户ID不能为空") |
|||
private String customerId; |
|||
/** |
|||
* 机关ID |
|||
*/ |
|||
@NotBlank(message = "机关ID不能为空") |
|||
private String agencyId; |
|||
@NotBlank(message = "指标code不能为空") |
|||
private String indexCode; |
|||
|
|||
/** |
|||
* 默认查询前几名 |
|||
*/ |
|||
private Integer topNum; |
|||
|
|||
private String monthId; |
|||
private String orgType; |
|||
private String sort; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue