
mybatis简单案例源码详细【注释全面】——实体层(User.java)
发布日期:2021-05-14 13:09:56
浏览次数:21
分类:精选文章
本文共 3466 字,大约阅读时间需要 11 分钟。
/** * @Title: Users.java * @Package org.entity * @Description: ������������������������������������������������������ * @author Mu Xiongxiong * @date 2017-10-5 ������6:53:06 * @version V1.0 */ package org.entity;import java.util.Date;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; }}
发表评论
最新留言
网站不错 人气很旺了 加油
[***.192.178.218]2025年04月19日 17时39分04秒
关于作者

喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!
推荐文章
CoreCLR源码探索(八) JIT的工作原理(详解篇)
2021-05-09
IOS开发Swift笔记16-错误处理
2021-05-10
flume使用中的一些常见错误解决办法 (地址已经使用)
2021-05-10
andriod 开发错误记录
2021-05-10
C语言编译错误列表
2021-05-10
看明白这两种情况,才敢说自己懂跨链! | 喵懂区块链24期
2021-05-10
张一鸣:创业7年,我经历的5件事
2021-05-10
git拉取远程指定分支代码
2021-05-10
《web安全入门》(四)前端开发基础Javascript
2021-05-10
python中列表 元组 字典 集合的区别
2021-05-10
python struct 官方文档
2021-05-10
Android DEX加固方案与原理
2021-05-10
Android Retrofit2.0 上传单张图片和多张图片
2021-05-10
iOS_Runtime3_动态添加方法
2021-05-10
Leetcode第557题---翻转字符串中的单词
2021-05-10
Problem G. The Stones Game【取石子博弈 & 思维】
2021-05-10
Unable to execute dex: Multiple dex files
2021-05-10
Java多线程
2021-05-10