9 changed files with 119 additions and 0 deletions
@ -0,0 +1,31 @@ |
|||||
|
package com.elink.esua.epdc.dto.group.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* |
||||
|
* 社群成员Form DTO |
||||
|
* |
||||
|
* @Author:liuchuang |
||||
|
* @Date:2019/10/23 9:10 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GroupUsersFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 7099778185347825038L; |
||||
|
|
||||
|
/** |
||||
|
* 社群ID |
||||
|
*/ |
||||
|
@NotBlank(message = "社群ID不能为空") |
||||
|
private String groupId; |
||||
|
|
||||
|
/** |
||||
|
* 状态 0:待审核,10:审核通过 |
||||
|
*/ |
||||
|
@NotNull(message = "成员状态不能为空") |
||||
|
private Integer state; |
||||
|
} |
Loading…
Reference in new issue