用户头像更新
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package com.njcn.user.pojo.param;
|
||||
|
||||
import com.njcn.common.pojo.constant.PatternRegex;
|
||||
import com.njcn.user.pojo.constant.UserValidMessage;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Pattern;
|
||||
|
||||
/**
|
||||
* Description:
|
||||
* Date: 2023/8/10 15:36【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
public class UserInfoParm {
|
||||
|
||||
// @ApiModelProperty("用户表Id")
|
||||
// @NotNull(message = UserValidMessage.ID_NOT_BLANK)
|
||||
// private String id;
|
||||
|
||||
@ApiModelProperty("移动端用户头像")
|
||||
private String headSculpture;
|
||||
|
||||
@ApiModelProperty("用户名")
|
||||
private String name;
|
||||
}
|
||||
Reference in New Issue
Block a user