UserAppUpdateRequest.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * Neither the name of the dreamlu.net developer nor the names of its
  13. * contributors may be used to endorse or promote products derived from
  14. * this software without specific prior written permission.
  15. * Author: Chill 庄骞 (smallchill@163.com)
  16. */
  17. package org.springblade.modules.api.request;
  18. import com.fasterxml.jackson.annotation.JsonFormat;
  19. import io.swagger.annotations.ApiModel;
  20. import io.swagger.annotations.ApiModelProperty;
  21. import lombok.Data;
  22. import org.springframework.format.annotation.DateTimeFormat;
  23. import java.io.Serializable;
  24. import java.util.Date;
  25. /**
  26. * 视图实体类
  27. *
  28. * @author Chill
  29. */
  30. @Data
  31. @ApiModel(value = "UserAppVO对象", description = "UserAppVO对象")
  32. public class UserAppUpdateRequest implements Serializable {
  33. private static final long serialVersionUID = 1L;
  34. @ApiModelProperty(value = "用户ID")
  35. private Long userId;
  36. /**
  37. * 昵称
  38. */
  39. @ApiModelProperty(value = "昵称")
  40. private String name;
  41. /**
  42. * 头像
  43. */
  44. @ApiModelProperty(value = "头像")
  45. private String avatar;
  46. /**
  47. * 生日
  48. */
  49. @DateTimeFormat(pattern = "yyyy-MM-dd")
  50. @JsonFormat(pattern = "yyyy-MM-dd")
  51. @ApiModelProperty(value = "生日,格式yyyy-MM-dd")
  52. private Date birthday;
  53. /**
  54. * 性别
  55. */
  56. @ApiModelProperty(value = "性别:1男,2女")
  57. private Integer sex;
  58. }