LoginEntity.java 801 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package com.keao.edu.common.entity;
  2. public class LoginEntity {
  3. private String smsCode;
  4. private String clientId;
  5. private String clientSecret;
  6. private String phone;
  7. public String getSmsCode() {
  8. return smsCode;
  9. }
  10. public void setSmsCode(String smsCode) {
  11. this.smsCode = smsCode;
  12. }
  13. public String getClientId() {
  14. return clientId;
  15. }
  16. public void setClientId(String clientId) {
  17. this.clientId = clientId;
  18. }
  19. public String getClientSecret() {
  20. return clientSecret;
  21. }
  22. public void setClientSecret(String clientSecret) {
  23. this.clientSecret = clientSecret;
  24. }
  25. public String getPhone() {
  26. return phone;
  27. }
  28. public void setPhone(String phone) {
  29. this.phone = phone;
  30. }
  31. }