|
@ -1,7 +1,9 @@ |
|
|
package com.epmet.dto.screencoll.form; |
|
|
package com.epmet.dto.screencoll.form; |
|
|
|
|
|
|
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
|
|
|
import org.hibernate.validator.constraints.Length; |
|
|
|
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotBlank; |
|
|
import java.io.Serializable; |
|
|
import java.io.Serializable; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -17,46 +19,57 @@ public class PartyBranchDataFormDTO implements Serializable { |
|
|
/** |
|
|
/** |
|
|
* 年Id :yyyy |
|
|
* 年Id :yyyy |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@NotBlank(message = "yearId不能为空") |
|
|
|
|
|
@Length(max = 4,message = "yyyy") |
|
|
private String yearId; |
|
|
private String yearId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 月份Id :yyyyMM |
|
|
* 月份Id :yyyyMM |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@NotBlank(message = "monthId不能为空") |
|
|
|
|
|
@Length(max = 6,message = "格式:yyyyMM") |
|
|
private String monthId; |
|
|
private String monthId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 数据类别 party:支部建设;union:联合建设党员志愿服务:voluntaryservice |
|
|
* 数据类别 party:支部建设;union:联合建设党员志愿服务:voluntaryservice |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@NotBlank(message = "type不能为空") |
|
|
private String type; |
|
|
private String type; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 组织类别 agency:组织;部门:department;网格:grid |
|
|
* 组织类别 agency:组织;部门:department;网格:grid |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@NotBlank(message = "orgType不能为空") |
|
|
private String orgType; |
|
|
private String orgType; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 组织Id 可以为网格,机关id |
|
|
* 组织Id 可以为网格,机关id |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@NotBlank(message = "orgId不能为空") |
|
|
private String orgId; |
|
|
private String orgId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 上级组织Id |
|
|
* 上级组织Id |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@NotBlank(message = "parentId不能为空") |
|
|
private String parentId; |
|
|
private String parentId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 组织名称 |
|
|
* 组织名称 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@NotBlank(message = "orgName不能为空") |
|
|
private String orgName; |
|
|
private String orgName; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 会议分类名称 |
|
|
* 会议分类名称 |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@NotBlank(message = "meetCategoryName不能为空") |
|
|
private String meetCategoryName; |
|
|
private String meetCategoryName; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 会议分类id |
|
|
* 会议分类id |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
@NotBlank(message = "meetCategoryId不能为空") |
|
|
private String meetCategoryId; |
|
|
private String meetCategoryId; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|