1 changed files with 54 additions and 0 deletions
@ -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/28 14:57 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EpdcWorkLogOrgActRecordsResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -6843354413370545958L; |
||||
|
/** |
||||
|
*部门ID |
||||
|
*/ |
||||
|
private String deptId; |
||||
|
|
||||
|
/** |
||||
|
*部门名称 |
||||
|
*/ |
||||
|
private String deptName; |
||||
|
|
||||
|
/** |
||||
|
*主题党日活动次数 |
||||
|
*/ |
||||
|
private Integer actZtdrNum; |
||||
|
|
||||
|
/** |
||||
|
*三会一课活动次数 |
||||
|
*/ |
||||
|
private Integer actShykNum; |
||||
|
|
||||
|
/** |
||||
|
*联建共建活动次数 |
||||
|
*/ |
||||
|
private Integer actLjgjNum; |
||||
|
|
||||
|
/** |
||||
|
*主题党日参与人数 |
||||
|
*/ |
||||
|
private Integer actZtdrPersonNum; |
||||
|
|
||||
|
/** |
||||
|
*三会一课参与人数 |
||||
|
*/ |
||||
|
private Integer actShykPersonNum; |
||||
|
|
||||
|
/** |
||||
|
*联建共建参与人数 |
||||
|
*/ |
||||
|
private Integer actLjgjPersonNum; |
||||
|
} |
Loading…
Reference in new issue