12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.keao.edu.common.entity;
- public class LoginEntity {
- private String smsCode;
- private String clientId;
- private String clientSecret;
- private String phone;
- public String getSmsCode() {
- return smsCode;
- }
- public void setSmsCode(String smsCode) {
- this.smsCode = smsCode;
- }
- public String getClientId() {
- return clientId;
- }
- public void setClientId(String clientId) {
- this.clientId = clientId;
- }
- public String getClientSecret() {
- return clientSecret;
- }
- public void setClientSecret(String clientSecret) {
- this.clientSecret = clientSecret;
- }
- public String getPhone() {
- return phone;
- }
- public void setPhone(String phone) {
- this.phone = phone;
- }
- }
|