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