zoukankan      html  css  js  c++  java
  • mybatis简单案例源码详细【注释全面】——实体层(Role.java)

    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;   //id
    	private 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;
    	}
    	
    }
    

  • 相关阅读:
    【组合数学】AGC036C
    【数位贪心】loj#530. 「LibreOJ β Round #5」最小倍数
    【概率dp】vijos 3747 随机图
    【线段树 经典技巧】10.7序列绝对值
    【杂题】10.7爬树
    【组合数学 思维题】10.6种树
    【换根dp】9.22小偷
    【高维前缀和】8.15B. 组合数
    【技巧 dp】1566: [NOI2009]管道取珠
    【经典dp 技巧】8.13序列
  • 原文地址:https://www.cnblogs.com/a1111/p/12816145.html
Copyright © 2011-2022 走看看