SpotifyRegister.java 503 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.cyksj.model.entity;
  2. import lombok.Data;
  3. /**
  4. * @author chan
  5. * @date 2022/11/3 4:08 PM
  6. */
  7. @Data
  8. public class SpotifyRegister extends BaseEntity{
  9. private String creationPoint;
  10. private String displayname;
  11. private String passwordRepeat;
  12. private String password;
  13. private String username;
  14. private String birthYear;
  15. private String birthMonth;
  16. private String birthDay;
  17. private String gender;
  18. private String email;
  19. private String iagree;
  20. }