forked from luyan/epmet-cloud-lingshan
10 changed files with 116 additions and 2 deletions
@ -0,0 +1,27 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description 查询分组下的组件;前端再政策招人那个界面,传入分组id,policyFlag查询 |
|||
* @Author yzm |
|||
* @Date 2022/7/19 9:24 |
|||
*/ |
|||
@Data |
|||
public class IcFormItemQueryDTO implements Serializable { |
|||
public interface AddUserInternalGroup { |
|||
} |
|||
|
|||
@NotBlank(message = "客户Id不能为空", groups = AddUserInternalGroup.class) |
|||
private String customerId; |
|||
|
|||
private String groupId; |
|||
/** |
|||
* 政策人员信息组件;1:展示;0:不展示;默认0 |
|||
*/ |
|||
private String policyFlag; |
|||
} |
|||
|
Loading…
Reference in new issue