You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.4 KiB
73 lines
1.4 KiB
package com.fr.plugin.idm.sso.entity; |
|
|
|
import com.fr.stable.db.entity.BaseEntity; |
|
import com.fr.third.javax.persistence.Column; |
|
import com.fr.third.javax.persistence.Entity; |
|
import com.fr.third.javax.persistence.Table; |
|
|
|
import java.util.List; |
|
|
|
/** |
|
* @Author fr.open |
|
* @Date 2020/8/18 |
|
* @Description |
|
**/ |
|
@Entity |
|
@Table(name = "plugin_sso_user") |
|
public class UserEntity extends BaseEntity { |
|
|
|
@Column(name = "uid") |
|
private String uid; |
|
@Column(name = "sex") |
|
private int sex; |
|
@Column(name = "loginname") |
|
private String loginname; |
|
@Column(name = "mobilephone") |
|
private String mobilephone; |
|
@Column(name = "username") |
|
private String username; |
|
|
|
public UserEntity() { |
|
} |
|
|
|
public void setUid(String uid) { |
|
this.uid = uid; |
|
} |
|
|
|
public String getUid() { |
|
return uid; |
|
} |
|
|
|
public void setSex(int sex) { |
|
this.sex = sex; |
|
} |
|
|
|
public int getSex() { |
|
return sex; |
|
} |
|
|
|
public void setLoginname(String loginname) { |
|
this.loginname = loginname; |
|
} |
|
|
|
public String getLoginname() { |
|
return loginname; |
|
} |
|
|
|
public void setMobilephone(String mobilephone) { |
|
this.mobilephone = mobilephone; |
|
} |
|
|
|
public String getMobilephone() { |
|
return mobilephone; |
|
} |
|
|
|
public void setUsername(String username) { |
|
this.username = username; |
|
} |
|
|
|
public String getUsername() { |
|
return username; |
|
} |
|
|
|
}
|
|
|