package com.rbac.entity;
import java.util.Date;
/**
* SysMenu generated by MyEclipse Persistence Tools
*/
public class SysMenu implements java.io.Serializable {
// Fields
private Long id;
private Long parentId;
private String name;
private String url;
private Integer needCheck;
private Integer isShow;
private Integer isDeleted;
private Long creatorId;
private Date createTime;
private Long modifierId;
private Date modifyTime;
private Integer orderSeq;
private String parentName;
private Integer childrenCount;
private String actionIds;
private Boolean checked = false;
// Constructors
public Boolean getChecked() {
return checked;
}
public void setChecked(Boolean checked) {
this.checked = checked;
}
public String getActionIds() {
return actionIds;
}
public void setActionIds(String actionIds) {
this.actionIds = actionIds;
}
public Integer getChildrenCount() {
return childrenCount;
}
public void setChildrenCount(Integer childrenCount) {
this.childrenCount = childrenCount;
}
public String getParentName() {
return parentName;
}
public void setParentName(String parentName) {
this.parentName = parentName;
}
/** default constructor */
public SysMenu() {
}
/** minimal constructor */
public SysMenu(Integer needCheck, Integer isShow, Integer isDeleted) {
this.needCheck = needCheck;
this.isShow = isShow;
this.isDeleted = isDeleted;
}
/** full constructor */
public SysMenu(Long parentId, String name, String url, Integer needCheck,
Integer isShow, Integer isDeleted, Long creatorId, Date createTime,
Long modifierId, Date modifyTime, Integer orderSeq) {
this.parentId = parentId;
this.name = name;
this.url = url;
this.needCheck = needCheck;
this.isShow = isShow;
this.isDeleted = isDeleted;
this.creatorId = creatorId;
this.createTime = createTime;
this.modifierId = modifierId;
this.modifyTime = modifyTime;
this.orderSeq = orderSeq;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
public Integer getNeedCheck() {
return this.needCheck;
}
public void setNeedCheck(Integer needCheck) {
this.needCheck = needCheck;
}
public Integer getIsShow() {
return this.isShow;
}
public void setIsShow(Integer isShow) {
this.isShow = isShow;
}
public Integer getIsDeleted() {
return this.isDeleted;
}
public void setIsDeleted(Integer isDeleted) {
this.isDeleted = isDeleted;
}
public Long getCreatorId() {
return this.creatorId;
}
public void setCreatorId(Long creatorId) {
this.creatorId = creatorId;
}
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Long getModifierId() {
return this.modifierId;
}
public void setModifierId(Long modifierId) {
this.modifierId = modifierId;
}
public Date getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(Date modifyTime) {
this.modifyTime = modifyTime;
}
public Integer getOrderSeq() {
return this.orderSeq;
}
public void setOrderSeq(Integer orderSeq) {
this.orderSeq = orderSeq;
}
public Long getParentId() {
return parentId;
}
public void setParentId(Long parentId) {
this.parentId = parentId;
}
}