mybatis简单案例源码详细【注释全面】——实体层(Role.java)
生活随笔
收集整理的這篇文章主要介紹了
mybatis简单案例源码详细【注释全面】——实体层(Role.java)
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
package org.entity;import java.util.Date;
/***
*
* 項(xiàng)目名稱:ssm_chop2
* 類名稱:Role
* 類描述: 角色表的實(shí)體類
* 創(chuàng)建人:Mu Xiongxiong
* 創(chuàng)建時(shí)間:2017-10-7 上午10:01:31
* 修改人:Mu Xiongxiong
* 修改時(shí)間:2017-10-7 上午10:01:31
* 修改備注:
* @version
**/
public class Role {private Integer id; //idprivate String roleCode; //角色編碼private String roleName; //角色名稱private Integer createdBy; //創(chuàng)建者private Date creationDate; //創(chuàng)建時(shí)間private Integer modifyBy; //更新者private Date modifyDate;//更新時(shí)間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;}}
總結(jié)
以上是生活随笔為你收集整理的mybatis简单案例源码详细【注释全面】——实体层(Role.java)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 怎么样的电脑配置才能作为服务器?
- 下一篇: mybatis简单案例源码详细【注释全面