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/MenuAuthEntity.java | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 106 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/lf/server/entity/sys/MenuAuthEntity.java b/src/main/java/com/lf/server/entity/sys/MenuAuthEntity.java new file mode 100644 index 0000000..da3d88c --- /dev/null +++ b/src/main/java/com/lf/server/entity/sys/MenuAuthEntity.java @@ -0,0 +1,106 @@ +package com.lf.server.entity.sys; + +import java.io.Serializable; +import java.sql.Timestamp; + +/** + * 鑿滃崟-鏉冮檺 + * @author WWW + */ +public class MenuAuthEntity implements Serializable { + private static final long serialVersionUID = -298515079682001408L; + + private int id; + + private int menuid; + + private int authid; + + private String name; + + private int createUser; + + private Timestamp createTime; + + private int updateUser; + + private Timestamp updateTime; + + private String authName; + + + public MenuAuthEntity() { + } + + public int getId() { + return id; + } + + public void setId(int id) { + this.id = id; + } + + public int getMenuid() { + return menuid; + } + + public void setMenuid(int menuid) { + this.menuid = menuid; + } + + public int getAuthid() { + return authid; + } + + public void setAuthid(int authid) { + this.authid = authid; + } + + 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; + } + public String getAuthName() { + return authName; + } + + public void setAuthName(String authName) { + this.authName = authName; + } + +} -- Gitblit v1.9.3