7 changed files with 216 additions and 5 deletions
			
			
		| @ -0,0 +1,40 @@ | |||
| package com.epmet.dto.result; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Description 要统计的议题信息 | |||
|  * @ClassName IssuesToBeCountedResultDTO | |||
|  * @Auth wangc | |||
|  * @Date 2020-05-19 14:06 | |||
|  */ | |||
| @Data | |||
| public class IssuesToBeCountedResultDTO implements Serializable { | |||
|     private static final long serialVersionUID = -5554820175558769619L; | |||
|     /** | |||
|      * 议题Id | |||
|      * */ | |||
|     private String issueId; | |||
| 
 | |||
|     /** | |||
|      * 议题状态 | |||
|      * */ | |||
|     private String issueStatus; | |||
| 
 | |||
|     /** | |||
|      * 态度 support | opposition | |||
|      * */ | |||
|     private String attitude; | |||
| 
 | |||
|     /** | |||
|      * 票数 - 昨日一天 | |||
|      * */ | |||
|     private Integer voteCount; | |||
| 
 | |||
|     /** | |||
|      * 票数 - 截至当日 | |||
|      * */ | |||
|     private Integer voteCountUpToYesterday; | |||
| } | |||
					Loading…
					
					
				
		Reference in new issue