RegisterReq.java 837 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package com.cyksj.model.manage.request;
  2. import com.cyksj.model.entity.AppleAutoRegisterData;
  3. import lombok.Data;
  4. /**
  5. * @author chan
  6. * @date 2022/11/3 3:49 PM
  7. */
  8. @Data
  9. public class RegisterReq {
  10. /**
  11. * 平台 Spotify google apple
  12. */
  13. private String platform;
  14. private Long goodsId;
  15. private String creationPoint;
  16. private String displayname;
  17. private String passwordRepeat;
  18. private String password;
  19. private String username;
  20. private String birthYear;
  21. private String birthMonth;
  22. private String birthDay;
  23. private String gender;
  24. private String email;
  25. private String country;
  26. private String phone;
  27. private String nickname;
  28. private String appleRegisterType;
  29. private AppleAutoRegisterData.CountryOrArea countryOrArea;
  30. private String code;
  31. }