2 Star 0 Fork 0

github__fork/EasyCode

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
SysModules.cs 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
luckearth 提交于 2019-07-15 17:16 +08:00 . 增加数据实体,数据操作上下文
using System;
using System.Collections.Generic;
using System.Text;
namespace EasyCode.Entity
{
public class SysModules
{
public virtual string Id { get; set; }
public virtual string ParentId { get; set; }
public virtual string ApplicationId { get; set; }
public virtual int ModuleLayer { get; set; }
public virtual string ModuleName { get; set; }
public virtual string AreaName { get; set; }
public virtual string ControllerName { get; set; }
public virtual string ActionName { get; set; }
public virtual int ModuleType { get; set; }
public virtual bool IsExpand { get; set; }
public virtual string Icon { get; set; }
public virtual string ModuleDescription { get; set; }
public virtual int PurviewNum { get; set; }
public virtual long PurviewSum { get; set; }
public virtual bool IsDelete { get; set; }
public virtual int Sort { get; set; }
public virtual bool IsValidPurView { get; set; } = true;
public virtual DateTime CreateTime { get; set; }
public virtual SysApplication Application { get; set; } = new SysApplication();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/github__fork/EasyCode.git
git@gitee.com:github__fork/EasyCode.git
github__fork
EasyCode
EasyCode
master

搜索帮助