10 changed files with 311 additions and 2 deletions
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.screen.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/20 2:28 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ContactMassLineChartFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 5627978767044772204L; |
||||
|
|
||||
|
public interface ContactMassLineChart{} |
||||
|
|
||||
|
/** |
||||
|
* 机关ID |
||||
|
*/ |
||||
|
@NotBlank(message = "机关ID不能为空",groups = {ContactMassLineChart.class}) |
||||
|
private String agencyId; |
||||
|
} |
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.screen.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/20 1:46 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class FineExampleFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -5402747414542735700L; |
||||
|
|
||||
|
public interface FineExample{} |
||||
|
|
||||
|
/** |
||||
|
* 机关ID |
||||
|
*/ |
||||
|
@NotBlank(message = "机关ID不能为空",groups = {FineExample.class}) |
||||
|
private String agencyId; |
||||
|
} |
@ -0,0 +1,30 @@ |
|||||
|
package com.epmet.screen.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/20 2:45 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ContactMassLineChartResult implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 5668549816473850787L; |
||||
|
|
||||
|
/** |
||||
|
* 组织名称 |
||||
|
*/ |
||||
|
private String orgName; |
||||
|
|
||||
|
/** |
||||
|
* 党员建群数 |
||||
|
*/ |
||||
|
private Integer groupTotal; |
||||
|
|
||||
|
/** |
||||
|
* 群成员数 |
||||
|
*/ |
||||
|
private Integer userTotal; |
||||
|
} |
@ -0,0 +1,31 @@ |
|||||
|
package com.epmet.screen.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/20 2:31 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ContactMassLineChartResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 192666933158635787L; |
||||
|
|
||||
|
/** |
||||
|
* 横坐标集合 |
||||
|
*/ |
||||
|
private List<String> xAxis; |
||||
|
|
||||
|
/** |
||||
|
* 党员建群数 |
||||
|
*/ |
||||
|
private List<Integer> groupData; |
||||
|
|
||||
|
/** |
||||
|
* 群成员数 |
||||
|
*/ |
||||
|
private List<Integer> groupMemberData; |
||||
|
} |
@ -0,0 +1,55 @@ |
|||||
|
package com.epmet.screen.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/20 1:48 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class FineExampleResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -2754696449087950719L; |
||||
|
|
||||
|
/** |
||||
|
* 党员参与议题数 |
||||
|
*/ |
||||
|
private Integer issueTotal; |
||||
|
|
||||
|
/** |
||||
|
* 党员参与议题书占平台议题数的占比 |
||||
|
*/ |
||||
|
private String issueRatio; |
||||
|
|
||||
|
/** |
||||
|
* 党员发布话题总数 |
||||
|
*/ |
||||
|
private Integer topicTotal; |
||||
|
|
||||
|
/** |
||||
|
* 占平台总话题百分比 |
||||
|
*/ |
||||
|
private String topicRatio; |
||||
|
|
||||
|
/** |
||||
|
* 议题转项目 |
||||
|
*/ |
||||
|
private Integer shiftProjectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 议题转项目占平台总项目数的比率 |
||||
|
*/ |
||||
|
private String shiftProjectRatio; |
||||
|
|
||||
|
/** |
||||
|
* 解决项目 |
||||
|
*/ |
||||
|
private Integer resolvedProjectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 占总解决项目的百分比 |
||||
|
*/ |
||||
|
private String resolvedProjectRatio; |
||||
|
} |
Loading…
Reference in new issue