日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

mybatis简单案例源码详细【注释全面】——实体层(User.java)

發布時間:2023/12/3 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 mybatis简单案例源码详细【注释全面】——实体层(User.java) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
/** * @Title: Users.java * @Package org.entity * @Description: TODO該方法的主要作用: * @author A18ccms A18ccms_gmail_com * @date 2017-10-5 下午6:53:06 * @version V1.0 */ package org.entity;import java.util.Date;/** * * 項目名稱:ssm_chop1 * 類名稱:Users * 類描述: 用戶表的實體類* 創建人:Mu Xiongxiong * 創建時間:2017-10-5 下午6:53:06 * 修改人:Mu Xiongxiong * 修改時間:2017-10-5 下午6:53:06 * 修改備注: * @version * */ public class Users {private Integer id; //用戶編號private String userCode; //用戶編碼private String userName; //用戶名private String userPassword; //密碼private String gender; //性別private Date birthday; //生日private String phone; //電話private String address; //地址private Integer userrole; //用戶角色private Integer createBy; //創建者private Date creationDate; //創建時間private Integer modifyBy; //更新者private Date modifyDate; //更新時間private Role role; //用戶角色的對象public Integer getId() {return id;}public void setId(Integer id) {this.id = id;}public String getUserCode() {return userCode;}public void setUserCode(String userCode) {this.userCode = userCode;}public String getUserName() {return userName;}public void setUserName(String userName) {this.userName = userName;}public String getUserPassword() {return userPassword;}public void setUserPassword(String userPassword) {this.userPassword = userPassword;}public String getGender() {return gender;}public void setGender(String gender) {this.gender = gender;}public Date getBirthday() {return birthday;}public void setBirthday(Date birthday) {this.birthday = birthday;}public String getPhone() {return phone;}public void setPhone(String phone) {this.phone = phone;}public String getAddress() {return address;}public void setAddress(String address) {this.address = address;}public Integer getUserrole() {return userrole;}public void setUserrole(Integer userrole) {this.userrole = userrole;}public Integer getCreateBy() {return createBy;}public void setCreateBy(Integer createBy) {this.createBy = createBy;}public Date getCreationDate() {return creationDate;}public void setCreationDate(Date creationDate) {this.creationDate = creationDate;}public Integer getModifyBy() {return modifyBy;}public void setModifyBy(Integer modifyBy) {this.modifyBy = modifyBy;}public Date getModifyDate() {return modifyDate;}public void setModifyDate(Date modifyDate) {this.modifyDate = modifyDate;}public Users(Integer id, String userCode, String userName,String userPassword, String gender, Date birthday, String phone,String address, Integer userrole, Integer createBy,Date creationDate, Integer modifyBy, Date modifyDate) {super();this.id = id;this.userCode = userCode;this.userName = userName;this.userPassword = userPassword;this.gender = gender;this.birthday = birthday;this.phone = phone;this.address = address;this.userrole = userrole;this.createBy = createBy;this.creationDate = creationDate;this.modifyBy = modifyBy;this.modifyDate = modifyDate;}public Users() {super();}public Role getRole() {return role;}public void setRole(Role role) {this.role = role;}}

總結

以上是生活随笔為你收集整理的mybatis简单案例源码详细【注释全面】——实体层(User.java)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。