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

来源:互联网 发布:网络电视机那个好用 编辑:程序博客网 时间:2024/06/05 17:13
package org.entity;import java.util.Date;/** * *    * 项目名称:ssm_chop2   * 类名称:Role   * 类描述:   角色表的实体类* 创建人:Mu Xiongxiong  * 创建时间:2017-10-7 上午10:01:31   * 修改人:Mu Xiongxiong   * 修改时间:2017-10-7 上午10:01:31   * 修改备注:   * @version    * */public class Role {private Integer id;   //idprivate String roleCode; //角色编码private String roleName; //角色名称private Integer createdBy; //创建者private Date creationDate; //创建时间private Integer modifyBy; //更新者private Date modifyDate;//更新时间public Integer getId() {return id;}public void setId(Integer id) {this.id = id;}public String getRoleCode() {return roleCode;}public void setRoleCode(String roleCode) {this.roleCode = roleCode;}public String getRoleName() {return roleName;}public void setRoleName(String roleName) {this.roleName = roleName;}public Integer getCreatedBy() {return createdBy;}public void setCreatedBy(Integer createdBy) {this.createdBy = createdBy;}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;}}

阅读全文
0 0
原创粉丝点击