20 changed files with 204 additions and 59 deletions
@ -0,0 +1,28 @@ |
|||
package com.elink.esua.epdc.dto.item.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 项目分类统计表单DTO |
|||
* @Author LC |
|||
* @Date 2019/9/12 13:21 |
|||
*/ |
|||
@Data |
|||
public class ItemCategoryStatisticsFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 2999035593195412516L; |
|||
|
|||
/** |
|||
* 网格ID |
|||
*/ |
|||
@NotNull(message = "网格ID不能为空") |
|||
private Long gridId; |
|||
/** |
|||
* 议题类别ID |
|||
*/ |
|||
@NotBlank(message = "议题类别ID不能为空") |
|||
private String categoryId; |
|||
} |
|||
@ -0,0 +1,32 @@ |
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 项目分类统计DTO |
|||
* @Author LC |
|||
* @Date 2019/9/12 13:22 |
|||
*/ |
|||
@Data |
|||
public class ItemCategoryStatisticsResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1156180616337484819L; |
|||
/** |
|||
* 类别ID |
|||
*/ |
|||
private String categoryId; |
|||
/** |
|||
* 类别名称 |
|||
*/ |
|||
private String categoryName; |
|||
/** |
|||
* 项目个数 |
|||
*/ |
|||
private String itemNum; |
|||
/** |
|||
* 态度总数 |
|||
*/ |
|||
private String attitudeNum; |
|||
} |
|||
Loading…
Reference in new issue