5 changed files with 81 additions and 4 deletions
@ -0,0 +1,27 @@ |
|||
package com.epmet.resi.group.dto.member.form; |
|||
|
|||
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 组长开启/关闭入群审核 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/11/17 14:02 |
|||
*/ |
|||
@Data |
|||
public class EditAuditSwitchFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -8185514609968752625L; |
|||
public interface AddUserShowGroup extends CustomerClientShowGroup { |
|||
} |
|||
@NotBlank(message = "小组id不能为空") |
|||
private String groupId; |
|||
/** |
|||
* 进组审核open开启;close关闭 |
|||
*/ |
|||
@NotBlank(message = "请选择是否开启", groups = {EditAuditSwitchFormDTO.AddUserShowGroup.class}) |
|||
private String auditSwitch; |
|||
} |
Loading…
Reference in new issue