9 changed files with 146 additions and 0 deletions
@ -0,0 +1,49 @@ |
|||
package com.elink.esua.epdc.dto.group.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* |
|||
* 申请入群Form DTO |
|||
* |
|||
* @Author:liuchuang |
|||
* @Date:2019/11/11 13:58 |
|||
*/ |
|||
@Data |
|||
public class GroupApplyFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -1708301010893268772L; |
|||
|
|||
/** |
|||
* 社群ID |
|||
*/ |
|||
@NotBlank(message = "社群ID不能为空") |
|||
private String groupId; |
|||
|
|||
/** |
|||
* 用户ID |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 用户名 |
|||
*/ |
|||
private String nickname; |
|||
|
|||
/** |
|||
* 用户头像 |
|||
*/ |
|||
private String userAvatar; |
|||
|
|||
/** |
|||
* 手机号 |
|||
*/ |
|||
private String mobile; |
|||
|
|||
/** |
|||
* 党员标识 0:否,1:是 |
|||
*/ |
|||
private String partyMember; |
|||
} |
Loading…
Reference in new issue