1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-21 01:10:39 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

添加用户登录(还未验证)

This commit is contained in:
2022-03-13 02:05:29 +08:00
parent 1b78102d61
commit b49e720b3f
11 changed files with 756 additions and 1 deletions

View File

@@ -0,0 +1,300 @@
package plus.bookshelf.Dao.DO;
public class UserDO {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.id
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
private Integer id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.username
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
private String username;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.encript_pwd
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
private String encriptPwd;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.nickname
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
private String nickname;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.user_identity
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
private String userIdentity;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.avatar
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
private String avatar;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.phone
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
private String phone;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.weixin_third_party_auth_code
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
private String weixinThirdPartyAuthCode;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column user_info.qq_third_party_auth_code
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
private String qqThirdPartyAuthCode;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.id
*
* @return the value of user_info.id
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public Integer getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.id
*
* @param id the value for user_info.id
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public void setId(Integer id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.username
*
* @return the value of user_info.username
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public String getUsername() {
return username;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.username
*
* @param username the value for user_info.username
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public void setUsername(String username) {
this.username = username == null ? null : username.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.encript_pwd
*
* @return the value of user_info.encript_pwd
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public String getEncriptPwd() {
return encriptPwd;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.encript_pwd
*
* @param encriptPwd the value for user_info.encript_pwd
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public void setEncriptPwd(String encriptPwd) {
this.encriptPwd = encriptPwd == null ? null : encriptPwd.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.nickname
*
* @return the value of user_info.nickname
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public String getNickname() {
return nickname;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.nickname
*
* @param nickname the value for user_info.nickname
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public void setNickname(String nickname) {
this.nickname = nickname == null ? null : nickname.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.user_identity
*
* @return the value of user_info.user_identity
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public String getUserIdentity() {
return userIdentity;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.user_identity
*
* @param userIdentity the value for user_info.user_identity
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public void setUserIdentity(String userIdentity) {
this.userIdentity = userIdentity == null ? null : userIdentity.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.avatar
*
* @return the value of user_info.avatar
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public String getAvatar() {
return avatar;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.avatar
*
* @param avatar the value for user_info.avatar
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public void setAvatar(String avatar) {
this.avatar = avatar == null ? null : avatar.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.phone
*
* @return the value of user_info.phone
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public String getPhone() {
return phone;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.phone
*
* @param phone the value for user_info.phone
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public void setPhone(String phone) {
this.phone = phone == null ? null : phone.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.weixin_third_party_auth_code
*
* @return the value of user_info.weixin_third_party_auth_code
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public String getWeixinThirdPartyAuthCode() {
return weixinThirdPartyAuthCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.weixin_third_party_auth_code
*
* @param weixinThirdPartyAuthCode the value for user_info.weixin_third_party_auth_code
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public void setWeixinThirdPartyAuthCode(String weixinThirdPartyAuthCode) {
this.weixinThirdPartyAuthCode = weixinThirdPartyAuthCode == null ? null : weixinThirdPartyAuthCode.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column user_info.qq_third_party_auth_code
*
* @return the value of user_info.qq_third_party_auth_code
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public String getQqThirdPartyAuthCode() {
return qqThirdPartyAuthCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column user_info.qq_third_party_auth_code
*
* @param qqThirdPartyAuthCode the value for user_info.qq_third_party_auth_code
*
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
*/
public void setQqThirdPartyAuthCode(String qqThirdPartyAuthCode) {
this.qqThirdPartyAuthCode = qqThirdPartyAuthCode == null ? null : qqThirdPartyAuthCode.trim();
}
}