6 changed files with 139 additions and 29 deletions
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 报事-办结 入参DTO |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/8/5 10:44 |
|||
*/ |
|||
@Data |
|||
public class CloseResiEventFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -3621650590714057648L; |
|||
|
|||
public interface AddUserInternalGroup { |
|||
} |
|||
@NotBlank(message = "eventId不能为空", groups = AddUserInternalGroup.class) |
|||
private String eventId; |
|||
|
|||
//以下参数从token中获取
|
|||
/** |
|||
* 当前用户id |
|||
*/ |
|||
@NotBlank(message = "userId不能为空", groups = AddUserInternalGroup.class) |
|||
private String userId; |
|||
} |
Loading…
Reference in new issue