forked from luyan/epmet-cloud-lingshan
5 changed files with 97 additions and 1 deletions
@ -0,0 +1,33 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.commons.tools.enums.IcFormCodeEnum; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author yzm |
|||
* @Date 2023/1/11 15:26 |
|||
*/ |
|||
@Data |
|||
public class InternalDelIcResiUserFormDTO { |
|||
|
|||
public interface DefaultGroup { |
|||
} |
|||
|
|||
private List<String> icResiUserIds; |
|||
|
|||
private String formCode = IcFormCodeEnum.RESI_BASE_INFO.getCode(); |
|||
|
|||
@NotBlank(message = "token获取的customerId不能为空", groups = DefaultGroup.class) |
|||
private String customerId; |
|||
|
|||
@NotBlank(message = "token获取的userId不能为空", groups = DefaultGroup.class) |
|||
private String currentStaffId; |
|||
|
|||
@NotBlank(message = "agencyId不能为空", groups = DefaultGroup.class) |
|||
private String agencyId; |
|||
} |
|||
|
Loading…
Reference in new issue