123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * /**
- * Copyright (c) 2018 业主系统 All rights reserved.
- * <p>
- * https://www.yezhu.io
- * <p>
- * 版权所有,侵权必究!
- */
- package com.kioor.user.dto;
- import io.swagger.v3.oas.annotations.media.Schema;
- import jakarta.validation.constraints.NotBlank;
- import lombok.Data;
- /**
- * 完善用户信息
- *
- * @author Mark sunlightcs@gmail.com
- */
- @Data
- @Schema(description = "用户信息表单")
- public class UserDTO {
- @Schema(description = "用户名")
- @NotBlank(message = "用户名不能为空")
- private String username;
- @Schema(description = "签名")
- private String remarks;
- @Schema(description = "是否对邻居展示", defaultValue = "1")
- private int openFlag = 1;
- }
|