6 changed files with 96 additions and 14 deletions
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @author zhaoqifeng |
||||
|
* @dscription |
||||
|
* @date 2020/11/4 9:47 |
||||
|
*/ |
||||
|
@NoArgsConstructor |
||||
|
@Data |
||||
|
public class AddUserPartyBadgeFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -6890701885153412660L; |
||||
|
/** |
||||
|
* 用户Id |
||||
|
*/ |
||||
|
@NotBlank(message = "用户Id不能为空") |
||||
|
private String userId; |
||||
|
} |
Loading…
Reference in new issue