From ab849f796bdc17236a95ea5fe5c166fb8f24a75c Mon Sep 17 00:00:00 2001 From: sws <15810472099@163.com> Date: 星期六, 26 十一月 2022 16:12:02 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/entity/sys/RoleMenuAuthEntity.java | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 105 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/sys/RoleMenuAuthEntity.java b/src/main/java/com/lf/server/entity/sys/RoleMenuAuthEntity.java new file mode 100644 index 0000000..ba72ff2 --- /dev/null +++ b/src/main/java/com/lf/server/entity/sys/RoleMenuAuthEntity.java @@ -0,0 +1,105 @@ +package com.lf.server.entity.sys; + +import java.io.Serializable; +import java.sql.Timestamp; + +/** + * 瑙掕壊-鑿滃崟 + * @author WWW + */ +public class RoleMenuAuthEntity implements Serializable { + private static final long serialVersionUID = -510981272678347904L; + + private int id; + + private int roleid; + + private int menuAuthId; + + private int menuid; + + private String name; + + private int createUser; + + private Timestamp createTime; + + private int updateUser; + + private Timestamp updateTime; + + public RoleMenuAuthEntity() { + } + + public int getId() { + return id; + } + + public void setId(int id) { + this.id = id; + } + + public int getRoleid() { + return roleid; + } + + public void setRoleid(int roleid) { + this.roleid = roleid; + } + + public int getMenuAuthId() { + return menuAuthId; + } + + public void setMenuAuthId(int menuAuthId) { + this.menuAuthId = menuAuthId; + } + + public int getMenuid() { + return menuid; + } + + public void setMenuid(int menuid) { + this.menuid = menuid; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public int getCreateUser() { + return createUser; + } + + public void setCreateUser(int createUser) { + this.createUser = createUser; + } + + public Timestamp getCreateTime() { + return createTime; + } + + public void setCreateTime(Timestamp createTime) { + this.createTime = createTime; + } + + public int getUpdateUser() { + return updateUser; + } + + public void setUpdateUser(int updateUser) { + this.updateUser = updateUser; + } + + public Timestamp getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Timestamp updateTime) { + this.updateTime = updateTime; + } +} -- Gitblit v1.9.3