2 changed files with 86 additions and 0 deletions
@ -0,0 +1,32 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/11 16:46 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenPartyBuildingPartyOrgActFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 3899868283905151960L; |
|||
|
|||
/** |
|||
* 页码 -必传项 |
|||
*/ |
|||
@NotNull(message = "页码 不能为空") |
|||
private Integer pageIndex; |
|||
|
|||
/** |
|||
* 页容量 -必传项 |
|||
*/ |
|||
@NotNull(message = "页容量 不能为空") |
|||
private Integer pageSize; |
|||
|
|||
/** |
|||
* 排序:0-主题党日活动次数,1-三会一课活动次数, 2-联建共建活动次数,3-主题党日活动时长,4-三会一课活动时长,5-联建共建活动时长 |
|||
*/ |
|||
private String orderType; |
|||
} |
@ -0,0 +1,54 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/11 16:47 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenPartyBuildingPartyOrgActResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -2226492650094839703L; |
|||
|
|||
/** |
|||
* 社区ID |
|||
*/ |
|||
private Long deptId; |
|||
|
|||
/** |
|||
* 社区名称 |
|||
*/ |
|||
private String deptName; |
|||
|
|||
/** |
|||
* 主题党日活动次数 |
|||
*/ |
|||
private Integer actZtdrNum; |
|||
|
|||
/** |
|||
* 三会一课活动次数 |
|||
*/ |
|||
private Integer actShykNum; |
|||
|
|||
/** |
|||
* 联建共建活动次数 |
|||
*/ |
|||
private Integer actLjgjNum; |
|||
|
|||
/** |
|||
* 主题党日活动时长 |
|||
*/ |
|||
private String actZtdrDuration; |
|||
|
|||
/** |
|||
* 三会一课活动时长 |
|||
*/ |
|||
private String actShykDuration; |
|||
|
|||
/** |
|||
* 联建共建活动时长 |
|||
*/ |
|||
private String actLjgjDuration; |
|||
} |
Loading…
Reference in new issue