| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- package com.ydtech.modules.admin.model;
- import java.util.Date;
- import java.io.Serializable;
- public class SysRoleMenu implements Serializable {
- private static final long serialVersionUID = 5734624303441472894L;
- private Long id;
- private Long roleId;
- private Long menuId;
- private String createBy;
- private Date createTime;
- private String lastUpdateBy;
- private Date lastUpdateTime;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Long getRoleId() {
- return roleId;
- }
- public void setRoleId(Long roleId) {
- this.roleId = roleId;
- }
- public Long getMenuId() {
- return menuId;
- }
- public void setMenuId(Long menuId) {
- this.menuId = menuId;
- }
- public String getCreateBy() {
- return createBy;
- }
- public void setCreateBy(String createBy) {
- this.createBy = createBy;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getLastUpdateBy() {
- return lastUpdateBy;
- }
- public void setLastUpdateBy(String lastUpdateBy) {
- this.lastUpdateBy = lastUpdateBy;
- }
- public Date getLastUpdateTime() {
- return lastUpdateTime;
- }
- public void setLastUpdateTime(Date lastUpdateTime) {
- this.lastUpdateTime = lastUpdateTime;
- }
- }
|