// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using iWare.Wms.EntityFramework.Core; #nullable disable namespace iWare.Wms.Database.Migrations.Migrations { [DbContext(typeof(DefaultDbContext))] [Migration("20230420055601_v1.0.2")] partial class v102 { protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "6.0.9") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder, 1L, 1); modelBuilder.Entity("Furion.Extras.iWare.Wms.Entity.SysLowCode", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AuthorName") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("作者姓名"); b.Property("BusName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("业务名"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("DatabaseName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("数据库名"); b.Property("FormDesign") .HasColumnType("text") .HasComment("动态表单"); b.Property("FormDesignType") .HasColumnType("int") .HasComment("动态表单类型"); b.Property("GenerateType") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("生成方式"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("MenuApplication") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("菜单应用分类"); b.Property("MenuPid") .HasColumnType("bigint") .HasComment("菜单编码"); b.Property("NameSpace") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("命名空间"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_low_code_module"); b.HasComment("低代码模块管理"); }); modelBuilder.Entity("Furion.Extras.iWare.Wms.Entity.SysLowCodeDataBase", b => { b.Property("Id") .HasColumnType("uniqueidentifier") .HasComment("Id主键"); b.Property("ClassName") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("类名"); b.Property("Control_Key") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("组件Key"); b.Property("Control_Label") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("组件名称"); b.Property("Control_Model") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("组件字段"); b.Property("Control_Type") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("组件字段"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("DbParam") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("数据类型补充参数"); b.Property("DbTypeName") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("数据类型"); b.Property("DtoTypeName") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("传入数据类型"); b.Property("FieldName") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("字段名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("IsRequired") .HasColumnType("bit") .HasComment("是否必填"); b.Property("QueryType") .HasColumnType("nvarchar(max)") .HasComment("查询方式"); b.Property("QueryWhether") .HasColumnType("bit") .HasComment("是否是查询"); b.Property("SysLowCodeId") .HasColumnType("bigint"); b.Property("TableDesc") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("表描述"); b.Property("TableName") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("表名"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.Property("WhetherAddUpdate") .HasColumnType("bit") .HasComment("增改"); b.Property("WhetherOrderBy") .HasColumnType("bit") .HasComment("排序"); b.Property("WhetherTable") .HasColumnType("bit") .HasComment("列表显示"); b.HasKey("Id"); b.HasIndex("SysLowCodeId"); b.ToTable("sys_low_code_module_database"); b.HasComment("低代码模块管理"); }); modelBuilder.Entity("Furion.Extras.iWare.Wms.SysCodeModular", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AuthorName") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("作者姓名"); b.Property("BusName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("业务名"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("DatabaseName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("数据库名"); b.Property("FormDesignJson") .HasColumnType("nvarchar(max)") .HasComment("动态表单"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("MenuApplication") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("菜单应用分类"); b.Property("MenuPid") .HasColumnType("bigint") .HasComment("菜单编码"); b.Property("NameSpace") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("命名空间"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_code_modular"); b.HasComment("动态生成模块管理表"); }); modelBuilder.Entity("iWare.Wms.Core.SysApp", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Active") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("是否默认激活"); b.Property("Code") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("编码"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .IsRequired() .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("名称"); b.Property("Sort") .HasColumnType("int") .HasComment("排序"); b.Property("Status") .HasColumnType("int") .HasComment("状态"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_app"); b.HasComment("系统应用表"); b.HasData( new { Id = 142307070898245L, Active = "Y", Code = "system", IsDeleted = false, Name = "开发管理", Sort = 100, Status = 0 }, new { Id = 142307070902341L, Active = "N", Code = "manage", IsDeleted = false, Name = "系统管理", Sort = 300, Status = 0 }, new { Id = 142307070922869L, Active = "N", Code = "busiapp", IsDeleted = false, Name = "业务应用", Sort = 400, Status = 0 }, new { Id = 355686432948293L, Active = "N", Code = "warejob", IsDeleted = false, Name = "仓库作业", Sort = 500, Status = 0 }, new { Id = 355686518018117L, Active = "N", Code = "warecount", IsDeleted = false, Name = "统计查询", Sort = 600, Status = 0 }); }); modelBuilder.Entity("iWare.Wms.Core.SysCodeGen", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AuthorName") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("作者姓名"); b.Property("BusName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("业务名"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("DatabaseName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("数据库名"); b.Property("GenerateType") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("生成方式"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("LowCodeId") .HasColumnType("bigint"); b.Property("MenuApplication") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("菜单应用分类"); b.Property("MenuPid") .HasColumnType("bigint") .HasComment("菜单编码"); b.Property("NameSpace") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("命名空间"); b.Property("TableName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("数据库表名"); b.Property("TablePrefix") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("是否移除表前缀"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_code_gen"); b.HasComment("代码生成表"); }); modelBuilder.Entity("iWare.Wms.Core.SysCodeGenConfig", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("CodeGenId") .HasColumnType("bigint") .HasComment("代码生成主表ID"); b.Property("ColumnComment") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("字段描述"); b.Property("ColumnKey") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("主键"); b.Property("ColumnName") .IsRequired() .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("数据库字段名"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("DataType") .HasMaxLength(128) .HasColumnType("nvarchar(128)") .HasComment("数据库中类型"); b.Property("DictTypeCode") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("字典Code"); b.Property("DtoNetType") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment(".NET数据类型(接口传入)"); b.Property("EffectType") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("作用类型"); b.Property("FkColumnName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("外键显示字段"); b.Property("FkColumnNetType") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("外键显示字段.NET类型"); b.Property("FkEntityName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("外键实体名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("NetType") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment(".NET数据类型"); b.Property("QueryType") .HasMaxLength(10) .HasColumnType("nvarchar(10)") .HasComment("查询方式"); b.Property("QueryWhether") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("是否是查询条件"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.Property("WhetherAddUpdate") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("增改"); b.Property("WhetherCommon") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("是否通用字段"); b.Property("WhetherOrderBy") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("列表是否排序"); b.Property("WhetherRequired") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("是否必填"); b.Property("WhetherRetract") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("列表是否缩进"); b.Property("WhetherTable") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("列表显示"); b.HasKey("Id"); b.ToTable("sys_code_gen_config"); b.HasComment("代码生成字段配置表"); }); modelBuilder.Entity("iWare.Wms.Core.SysConfig", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Code") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("编码"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("GroupCode") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("常量所属分类的编码"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("名称"); b.Property("Remark") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("备注"); b.Property("Status") .HasColumnType("int") .HasComment("状态"); b.Property("SysFlag") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("是否是系统参数"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.Property("Value") .HasColumnType("nvarchar(max)") .HasComment("属性值"); b.HasKey("Id"); b.ToTable("sys_config"); b.HasComment("参数配置表"); b.HasData( new { Id = 142307070902342L, Code = "DILON_JWT_SECRET", GroupCode = "DEFAULT", IsDeleted = false, Name = "jwt密钥", Remark = "(重要)jwt密钥,默认为空,自行设置", Status = 0, SysFlag = "Y", Value = "weiben" }, new { Id = 142307070902343L, Code = "DILON_DEFAULT_PASSWORD", GroupCode = "DEFAULT", IsDeleted = false, Name = "默认密码", Remark = "默认密码", Status = 0, SysFlag = "Y", Value = "123456" }, new { Id = 142307070902344L, Code = "DILON_TOKEN_EXPIRE", GroupCode = "DEFAULT", IsDeleted = false, Name = "token过期时间", Remark = "token过期时间(单位:秒)", Status = 0, SysFlag = "Y", Value = "86400" }, new { Id = 142307070902345L, Code = "DILON_SESSION_EXPIRE", GroupCode = "DEFAULT", IsDeleted = false, Name = "session会话过期时间", Remark = "session会话过期时间(单位:秒)", Status = 0, SysFlag = "Y", Value = "7200" }, new { Id = 142307070902361L, Code = "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", GroupCode = "FILE_PATH", IsDeleted = false, Name = "Win本地上传文件路径", Remark = "Win本地上传文件路径", Status = 0, SysFlag = "Y", Value = "D:/tmp" }, new { Id = 142307070902363L, Code = "DILON_UN_XSS_FILTER_URL", GroupCode = "DEFAULT", IsDeleted = false, Name = "放开XSS过滤的接口", Remark = "多个url可以用英文逗号隔开", Status = 0, SysFlag = "Y", Value = "/demo/xssfilter,/demo/unxss" }, new { Id = 142307070902364L, Code = "DILON_ENABLE_SINGLE_LOGIN", GroupCode = "DEFAULT", IsDeleted = false, Name = "单用户登陆的开关", Remark = "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", Status = 0, SysFlag = "Y", Value = "false" }, new { Id = 142307070902365L, Code = "DILON_CAPTCHA_OPEN", GroupCode = "DEFAULT", IsDeleted = false, Name = "登录验证码的开关", Remark = "true-打开,false-关闭", Status = 0, SysFlag = "Y", Value = "true" }); }); modelBuilder.Entity("iWare.Wms.Core.SysDictData", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Code") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("编码"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Remark") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("备注"); b.Property("Sort") .HasColumnType("int") .HasComment("排序"); b.Property("Status") .HasColumnType("int") .HasComment("状态"); b.Property("TypeId") .HasColumnType("bigint") .HasComment("字典类型Id"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.Property("Value") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("值"); b.HasKey("Id"); b.HasIndex("TypeId"); b.ToTable("sys_dict_data"); b.HasComment("字典值表"); b.HasData( new { Id = 142307070902375L, Code = "1", IsDeleted = false, Remark = "男性", Sort = 100, Status = 0, TypeId = 142307070906484L, Value = "男" }, new { Id = 142307070902376L, Code = "2", IsDeleted = false, Remark = "女性", Sort = 100, Status = 0, TypeId = 142307070906484L, Value = "女" }, new { Id = 142307070902377L, Code = "3", IsDeleted = false, Remark = "未知性别", Sort = 100, Status = 0, TypeId = 142307070906484L, Value = "未知" }, new { Id = 142307070902384L, Code = "0", IsDeleted = false, Remark = "正常", Sort = 100, Status = 0, TypeId = 142307070906483L, Value = "正常" }, new { Id = 142307070902385L, Code = "1", IsDeleted = false, Remark = "停用", Sort = 100, Status = 0, TypeId = 142307070906483L, Value = "停用" }, new { Id = 142307070902386L, Code = "2", IsDeleted = false, Remark = "删除", Sort = 100, Status = 0, TypeId = 142307070906483L, Value = "删除" }, new { Id = 142307070902387L, Code = "N", IsDeleted = false, Remark = "否", Sort = 100, Status = 0, TypeId = 142307070906486L, Value = "否" }, new { Id = 142307070902388L, Code = "Y", IsDeleted = false, Remark = "是", Sort = 100, Status = 0, TypeId = 142307070906486L, Value = "是" }, new { Id = 142307070902389L, Code = "1", IsDeleted = false, Remark = "登录", Sort = 100, Status = 0, TypeId = 142307070906487L, Value = "登录" }, new { Id = 142307070902390L, Code = "2", IsDeleted = false, Remark = "登出", Sort = 100, Status = 0, TypeId = 142307070906487L, Value = "登出" }, new { Id = 142307070902391L, Code = "0", IsDeleted = false, Remark = "目录", Sort = 100, Status = 0, TypeId = 142307070906488L, Value = "目录" }, new { Id = 142307070902392L, Code = "1", IsDeleted = false, Remark = "菜单", Sort = 100, Status = 0, TypeId = 142307070906488L, Value = "菜单" }, new { Id = 142307070902393L, Code = "2", IsDeleted = false, Remark = "按钮", Sort = 100, Status = 0, TypeId = 142307070906488L, Value = "按钮" }, new { Id = 142307070902394L, Code = "0", IsDeleted = false, Remark = "未发送", Sort = 100, Status = 0, TypeId = 142307070906489L, Value = "未发送" }, new { Id = 142307070902395L, Code = "1", IsDeleted = false, Remark = "发送成功", Sort = 100, Status = 0, TypeId = 142307070906489L, Value = "发送成功" }, new { Id = 142307070902396L, Code = "2", IsDeleted = false, Remark = "发送失败", Sort = 100, Status = 0, TypeId = 142307070906489L, Value = "发送失败" }, new { Id = 142307070902397L, Code = "3", IsDeleted = false, Remark = "失效", Sort = 100, Status = 0, TypeId = 142307070906489L, Value = "失效" }, new { Id = 142307070902398L, Code = "0", IsDeleted = false, Remark = "无", Sort = 100, Status = 0, TypeId = 142307070906490L, Value = "无" }, new { Id = 142307070902399L, Code = "1", IsDeleted = false, Remark = "组件", Sort = 100, Status = 0, TypeId = 142307070906490L, Value = "组件" }, new { Id = 142307070906437L, Code = "2", IsDeleted = false, Remark = "内链", Sort = 100, Status = 0, TypeId = 142307070906490L, Value = "内链" }, new { Id = 142307070906438L, Code = "3", IsDeleted = false, Remark = "外链", Sort = 100, Status = 0, TypeId = 142307070906490L, Value = "外链" }, new { Id = 142307070906439L, Code = "1", IsDeleted = false, Remark = "系统权重", Sort = 100, Status = 0, TypeId = 142307070906491L, Value = "系统权重" }, new { Id = 142307070906440L, Code = "2", IsDeleted = false, Remark = "业务权重", Sort = 100, Status = 0, TypeId = 142307070906491L, Value = "业务权重" }, new { Id = 142307070906441L, Code = "1", IsDeleted = false, Remark = "全部数据", Sort = 100, Status = 0, TypeId = 142307070906492L, Value = "全部数据" }, new { Id = 142307070906442L, Code = "2", IsDeleted = false, Remark = "本部门及以下数据", Sort = 100, Status = 0, TypeId = 142307070906492L, Value = "本部门及以下数据" }, new { Id = 142307070906443L, Code = "3", IsDeleted = false, Remark = "本部门数据", Sort = 100, Status = 0, TypeId = 142307070906492L, Value = "本部门数据" }, new { Id = 142307070906444L, Code = "4", IsDeleted = false, Remark = "仅本人数据", Sort = 100, Status = 0, TypeId = 142307070906492L, Value = "仅本人数据" }, new { Id = 142307070906445L, Code = "5", IsDeleted = false, Remark = "自定义数据", Sort = 100, Status = 0, TypeId = 142307070906492L, Value = "自定义数据" }, new { Id = 142307070906449L, Code = "0", IsDeleted = false, Remark = "其它", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "其它" }, new { Id = 142307070906450L, Code = "1", IsDeleted = false, Remark = "增加", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "增加" }, new { Id = 142307070906451L, Code = "2", IsDeleted = false, Remark = "删除", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "删除" }, new { Id = 142307070906452L, Code = "3", IsDeleted = false, Remark = "编辑", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "编辑" }, new { Id = 142307070906453L, Code = "4", IsDeleted = false, Remark = "更新", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "更新" }, new { Id = 142307070906454L, Code = "5", IsDeleted = false, Remark = "查询", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "查询" }, new { Id = 142307070906455L, Code = "6", IsDeleted = false, Remark = "详情", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "详情" }, new { Id = 142307070906456L, Code = "7", IsDeleted = false, Remark = "树", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "树" }, new { Id = 142307070906457L, Code = "8", IsDeleted = false, Remark = "导入", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "导入" }, new { Id = 142307070906458L, Code = "9", IsDeleted = false, Remark = "导出", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "导出" }, new { Id = 142307070906459L, Code = "10", IsDeleted = false, Remark = "授权", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "授权" }, new { Id = 142307070906460L, Code = "11", IsDeleted = false, Remark = "强退", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "强退" }, new { Id = 142307070906461L, Code = "12", IsDeleted = false, Remark = "清空", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "清空" }, new { Id = 142307070906462L, Code = "13", IsDeleted = false, Remark = "修改状态", Sort = 100, Status = 0, TypeId = 142307070906494L, Value = "修改状态" }, new { Id = 142307070906463L, Code = "1", IsDeleted = false, Remark = "阿里云", Sort = 100, Status = 0, TypeId = 142307070906495L, Value = "阿里云" }, new { Id = 142307070906464L, Code = "2", IsDeleted = false, Remark = "腾讯云", Sort = 100, Status = 0, TypeId = 142307070906495L, Value = "腾讯云" }, new { Id = 142307070906465L, Code = "3", IsDeleted = false, Remark = "minio", Sort = 100, Status = 0, TypeId = 142307070906495L, Value = "minio" }, new { Id = 142307070906466L, Code = "4", IsDeleted = false, Remark = "本地", Sort = 100, Status = 0, TypeId = 142307070906495L, Value = "本地" }, new { Id = 142307070906467L, Code = "1", IsDeleted = false, Remark = "运行", Sort = 100, Status = 0, TypeId = 142307070910533L, Value = "运行" }, new { Id = 142307070906468L, Code = "2", IsDeleted = false, Remark = "停止", Sort = 100, Status = 0, TypeId = 142307070910533L, Value = "停止" }, new { Id = 142307070906469L, Code = "1", IsDeleted = false, Remark = "通知", Sort = 100, Status = 0, TypeId = 142307070910534L, Value = "通知" }, new { Id = 142307070906470L, Code = "2", IsDeleted = false, Remark = "公告", Sort = 100, Status = 0, TypeId = 142307070910534L, Value = "公告" }, new { Id = 142307070906471L, Code = "0", IsDeleted = false, Remark = "草稿", Sort = 100, Status = 0, TypeId = 142307070910535L, Value = "草稿" }, new { Id = 142307070906472L, Code = "1", IsDeleted = false, Remark = "发布", Sort = 100, Status = 0, TypeId = 142307070910535L, Value = "发布" }, new { Id = 142307070906473L, Code = "2", IsDeleted = false, Remark = "撤回", Sort = 100, Status = 0, TypeId = 142307070910535L, Value = "撤回" }, new { Id = 142307070906474L, Code = "3", IsDeleted = false, Remark = "删除", Sort = 100, Status = 0, TypeId = 142307070910535L, Value = "删除" }, new { Id = 142307070906475L, Code = "true", IsDeleted = false, Remark = "是", Sort = 100, Status = 0, TypeId = 142307070910536L, Value = "是" }, new { Id = 142307070906476L, Code = "false", IsDeleted = false, Remark = "否", Sort = 100, Status = 0, TypeId = 142307070910536L, Value = "否" }, new { Id = 142307070906477L, Code = "1", IsDeleted = false, Remark = "下载压缩包", Sort = 100, Status = 0, TypeId = 142307070910537L, Value = "下载压缩包" }, new { Id = 142307070906478L, Code = "2", IsDeleted = false, Remark = "生成到本项目", Sort = 100, Status = 0, TypeId = 142307070910537L, Value = "生成到本项目" }, new { Id = 142307070906479L, Code = "1", IsDeleted = false, Remark = "GET", Sort = 100, Status = 0, TypeId = 142307070910538L, Value = "GET" }, new { Id = 142307070906480L, Code = "2", IsDeleted = false, Remark = "POST", Sort = 100, Status = 0, TypeId = 142307070910538L, Value = "POST" }, new { Id = 142307070906481L, Code = "3", IsDeleted = false, Remark = "PUT", Sort = 100, Status = 0, TypeId = 142307070910538L, Value = "PUT" }, new { Id = 142307070906482L, Code = "4", IsDeleted = false, Remark = "DELETE", Sort = 100, Status = 0, TypeId = 142307070910538L, Value = "DELETE" }, new { Id = 142307070922829L, Code = "fk", IsDeleted = false, Remark = "外键", Sort = 100, Status = 0, TypeId = 142307070922827L, Value = "外键" }, new { Id = 142307070922830L, Code = "input", IsDeleted = false, Remark = "输入框", Sort = 100, Status = 0, TypeId = 142307070922827L, Value = "输入框" }, new { Id = 142307070922831L, Code = "datepicker", IsDeleted = false, Remark = "时间选择", Sort = 100, Status = 0, TypeId = 142307070922827L, Value = "时间选择" }, new { Id = 142307070922832L, Code = "select", IsDeleted = false, Remark = "下拉框", Sort = 100, Status = 0, TypeId = 142307070922827L, Value = "下拉框" }, new { Id = 142307070922833L, Code = "radio", IsDeleted = false, Remark = "单选框", Sort = 100, Status = 0, TypeId = 142307070922827L, Value = "单选框" }, new { Id = 142307070922834L, Code = "switch", IsDeleted = false, Remark = "开关", Sort = 100, Status = 0, TypeId = 142307070922827L, Value = "开关" }, new { Id = 142307070922835L, Code = "checkbox", IsDeleted = false, Remark = "多选框", Sort = 100, Status = 0, TypeId = 142307070922827L, Value = "多选框" }, new { Id = 142307070922836L, Code = "inputnumber", IsDeleted = false, Remark = "数字输入框", Sort = 100, Status = 0, TypeId = 142307070922827L, Value = "数字输入框" }, new { Id = 142307070922837L, Code = "textarea", IsDeleted = false, Remark = "文本域", Sort = 100, Status = 0, TypeId = 142307070922827L, Value = "文本域" }, new { Id = 142307070922838L, Code = "==", IsDeleted = false, Remark = "等于", Sort = 1, Status = 0, TypeId = 142307070922828L, Value = "等于" }, new { Id = 142307070922839L, Code = "like", IsDeleted = false, Remark = "模糊", Sort = 2, Status = 0, TypeId = 142307070922828L, Value = "模糊" }, new { Id = 142307070922840L, Code = ">", IsDeleted = false, Remark = "大于", Sort = 3, Status = 0, TypeId = 142307070922828L, Value = "大于" }, new { Id = 142307070922841L, Code = "<", IsDeleted = false, Remark = "小于", Sort = 4, Status = 0, TypeId = 142307070922828L, Value = "小于" }, new { Id = 142307070922842L, Code = "!=", IsDeleted = false, Remark = "不等于", Sort = 5, Status = 0, TypeId = 142307070922828L, Value = "不等于" }, new { Id = 142307070922843L, Code = ">=", IsDeleted = false, Remark = "大于等于", Sort = 6, Status = 0, TypeId = 142307070922828L, Value = "大于等于" }, new { Id = 142307070922844L, Code = "<=", IsDeleted = false, Remark = "小于等于", Sort = 7, Status = 0, TypeId = 142307070922828L, Value = "小于等于" }, new { Id = 142307070922845L, Code = "isNotNull", IsDeleted = false, Remark = "不为空", Sort = 8, Status = 0, TypeId = 142307070922828L, Value = "不为空" }, new { Id = 142307070922851L, Code = "int", IsDeleted = false, Remark = "int", Sort = 100, Status = 0, TypeId = 142307070922829L, Value = "int" }, new { Id = 142307070922846L, Code = "long", IsDeleted = false, Remark = "long", Sort = 100, Status = 0, TypeId = 142307070922829L, Value = "long" }, new { Id = 142307070922847L, Code = "string", IsDeleted = false, Remark = "string", Sort = 100, Status = 0, TypeId = 142307070922829L, Value = "string" }, new { Id = 142307070922850L, Code = "bool", IsDeleted = false, Remark = "bool", Sort = 100, Status = 0, TypeId = 142307070922829L, Value = "bool" }, new { Id = 142307070922852L, Code = "double", IsDeleted = false, Remark = "double", Sort = 100, Status = 0, TypeId = 142307070922829L, Value = "double" }, new { Id = 142307070922848L, Code = "DateTime", IsDeleted = false, Remark = "DateTime", Sort = 100, Status = 0, TypeId = 142307070922829L, Value = "DateTime" }, new { Id = 142307070922861L, Code = "float", IsDeleted = false, Remark = "float", Sort = 100, Status = 0, TypeId = 142307070922829L, Value = "float" }, new { Id = 142307070922862L, Code = "decimal", IsDeleted = false, Remark = "decimal", Sort = 100, Status = 0, TypeId = 142307070922829L, Value = "decimal" }, new { Id = 142307070922863L, Code = "Guid", IsDeleted = false, Remark = "Guid", Sort = 100, Status = 0, TypeId = 142307070922829L, Value = "Guid" }, new { Id = 142307070922864L, Code = "DateTimeOffset", IsDeleted = false, Remark = "DateTimeOffset", Sort = 100, Status = 0, TypeId = 142307070922829L, Value = "DateTimeOffset" }, new { Id = 142307070926943L, Code = "0", IsDeleted = false, Remark = "集团角色", Sort = 100, Status = 0, TypeId = 142307070926941L, Value = "集团角色" }, new { Id = 142307070926944L, Code = "1", IsDeleted = false, Remark = "加盟商角色", Sort = 100, Status = 0, TypeId = 142307070926941L, Value = "加盟商角色" }, new { Id = 142307070926945L, Code = "2", IsDeleted = false, Remark = "门店角色", Sort = 100, Status = 0, TypeId = 142307070926941L, Value = "门店角色" }, new { Id = 142307070926946L, Code = "1", IsDeleted = false, Remark = "一级", Sort = 100, Status = 0, TypeId = 142307070926942L, Value = "一级" }, new { Id = 142307070926947L, Code = "2", IsDeleted = false, Remark = "二级", Sort = 100, Status = 0, TypeId = 142307070926942L, Value = "二级" }, new { Id = 142307070926948L, Code = "3", IsDeleted = false, Remark = "三级", Sort = 100, Status = 0, TypeId = 142307070926942L, Value = "三级" }, new { Id = 142307070926949L, Code = "4", IsDeleted = false, Remark = "四级", Sort = 100, Status = 0, TypeId = 142307070926942L, Value = "四级" }, new { Id = 285605336563781L, Code = "DefaultFormType", IsDeleted = false, Remark = "默认表单分类", Sort = 100, Status = 0, TypeId = 285605149831237L, Value = "默认表单分类" }, new { Id = 285641495289925L, Code = "DefaultGroup", IsDeleted = false, Remark = "默认分类", Sort = 100, Status = 0, TypeId = 285641358889029L, Value = "默认分类" }, new { Id = 355697634480197L, Code = "0", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355694205325381L, Value = "其他" }, new { Id = 355697676427333L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355694205325381L, Value = "木质" }, new { Id = 355697726726213L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355694205325381L, Value = "金属" }, new { Id = 355697755361349L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355694205325381L, Value = "塑料" }, new { Id = 355697944657989L, Code = "0", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355697881423941L, Value = "禁用" }, new { Id = 355697974415429L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355697881423941L, Value = "空闲" }, new { Id = 355698005966917L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355697881423941L, Value = "组盘" }, new { Id = 355698032828485L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355697881423941L, Value = "库位" }, new { Id = 355698270015557L, Code = "0", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698224758853L, Value = "其他" }, new { Id = 355698303508549L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698224758853L, Value = "立体库" }, new { Id = 355698328531013L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698224758853L, Value = "普通库" }, new { Id = 355698362712133L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698224758853L, Value = "公共库" }, new { Id = 355698476777541L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698441912389L, Value = "空闲" }, new { Id = 355698510786629L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698441912389L, Value = "待入" }, new { Id = 355698549424197L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698441912389L, Value = "存货" }, new { Id = 355698576941125L, Code = "4", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698441912389L, Value = "待出" }, new { Id = 355698694561861L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698661130309L, Value = "低" }, new { Id = 355698716401733L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698661130309L, Value = "中" }, new { Id = 355698740326469L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698661130309L, Value = "高" }, new { Id = 355698898735173L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698855280709L, Value = "免检" }, new { Id = 355698924970053L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355698855280709L, Value = "抽检" }, new { Id = 355699041800261L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699003580485L, Value = "原材料" }, new { Id = 355699063255109L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699003580485L, Value = "半成品" }, new { Id = 355699088330821L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699003580485L, Value = "成品" }, new { Id = 355699113156677L, Code = "4", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699003580485L, Value = "空托" }, new { Id = 355699219353669L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699189051461L, Value = "长度" }, new { Id = 355699243540549L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699189051461L, Value = "重量" }, new { Id = 355699345645637L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699314061381L, Value = "cm" }, new { Id = 355699367575621L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699314061381L, Value = "t" }, new { Id = 355699479236677L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699447029829L, Value = "手动" }, new { Id = 355699505229893L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699447029829L, Value = "自动" }, new { Id = 355699615133765L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699576467525L, Value = "入库" }, new { Id = 355699638476869L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699576467525L, Value = "出库" }, new { Id = 355699661889605L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699576467525L, Value = "移库" }, new { Id = 355699760455749L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699731099717L, Value = "未执行" }, new { Id = 355699784736837L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699731099717L, Value = "执行中" }, new { Id = 355699813859397L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699731099717L, Value = "完成" }); }); modelBuilder.Entity("iWare.Wms.Core.SysDictType", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Code") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("编码"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("名称"); b.Property("Remark") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("备注"); b.Property("Sort") .HasColumnType("int") .HasComment("排序"); b.Property("Status") .HasColumnType("int") .HasComment("状态"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_dict_type"); b.HasComment("字典类型表"); b.HasData( new { Id = 142307070906483L, Code = "common_status", IsDeleted = false, Name = "通用状态", Remark = "通用状态", Sort = 100, Status = 0 }, new { Id = 142307070906484L, Code = "sex", IsDeleted = false, Name = "性别", Remark = "性别字典", Sort = 100, Status = 0 }, new { Id = 142307070906485L, Code = "consts_type", IsDeleted = false, Name = "常量的分类", Remark = "常量的分类,用于区别一组配置", Sort = 100, Status = 0 }, new { Id = 142307070906486L, Code = "yes_or_no", IsDeleted = false, Name = "是否", Remark = "是否", Sort = 100, Status = 0 }, new { Id = 142307070906487L, Code = "vis_type", IsDeleted = false, Name = "访问类型", Remark = "访问类型", Sort = 100, Status = 0 }, new { Id = 142307070906488L, Code = "menu_type", IsDeleted = false, Name = "菜单类型", Remark = "菜单类型", Sort = 100, Status = 0 }, new { Id = 142307070906489L, Code = "send_type", IsDeleted = false, Name = "发送类型", Remark = "发送类型", Sort = 100, Status = 0 }, new { Id = 142307070906490L, Code = "open_type", IsDeleted = false, Name = "打开方式", Remark = "打开方式", Sort = 100, Status = 0 }, new { Id = 142307070906491L, Code = "menu_weight", IsDeleted = false, Name = "菜单权重", Remark = "菜单权重", Sort = 100, Status = 0 }, new { Id = 142307070906492L, Code = "data_scope_type", IsDeleted = false, Name = "数据范围类型", Remark = "数据范围类型", Sort = 100, Status = 0 }, new { Id = 142307070906494L, Code = "op_type", IsDeleted = false, Name = "操作类型", Remark = "操作类型", Sort = 100, Status = 0 }, new { Id = 142307070906495L, Code = "file_storage_location", IsDeleted = false, Name = "文件存储位置", Remark = "文件存储位置", Sort = 100, Status = 0 }, new { Id = 142307070910533L, Code = "run_status", IsDeleted = false, Name = "运行状态", Remark = "定时任务运行状态", Sort = 100, Status = 0 }, new { Id = 142307070910534L, Code = "notice_type", IsDeleted = false, Name = "通知公告类型", Remark = "通知公告类型", Sort = 100, Status = 0 }, new { Id = 142307070910535L, Code = "notice_status", IsDeleted = false, Name = "通知公告状态", Remark = "通知公告状态", Sort = 100, Status = 0 }, new { Id = 142307070910536L, Code = "yes_true_false", IsDeleted = false, Name = "是否boolean", Remark = "是否boolean", Sort = 100, Status = 0 }, new { Id = 142307070910537L, Code = "code_gen_create_type", IsDeleted = false, Name = "代码生成方式", Remark = "代码生成方式", Sort = 100, Status = 0 }, new { Id = 142307070910538L, Code = "request_type", IsDeleted = false, Name = "请求方式", Remark = "请求方式", Sort = 100, Status = 0 }, new { Id = 142307070922827L, Code = "code_gen_effect_type", IsDeleted = false, Name = "代码生成作用类型", Remark = "代码生成作用类型", Sort = 100, Status = 0 }, new { Id = 142307070922828L, Code = "code_gen_query_type", IsDeleted = false, Name = "代码生成查询类型", Remark = "代码生成查询类型", Sort = 100, Status = 0 }, new { Id = 142307070922829L, Code = "code_gen_net_type", IsDeleted = false, Name = "代码生成.NET类型", Remark = "代码生成.NET类型", Sort = 100, Status = 0 }, new { Id = 142307070926941L, Code = "role_type", IsDeleted = false, Name = "角色类型", Remark = "角色类型", Sort = 100, Status = 0 }, new { Id = 142307070926942L, Code = "org_type", IsDeleted = false, Name = "机构类型", Remark = "机构类型", Sort = 100, Status = 0 }, new { Id = 285605149831237L, Code = "form_type", IsDeleted = false, Name = "表单类型", Remark = "表单类型", Sort = 100, Status = 0 }, new { Id = 285641358889029L, Code = "workflow_group", IsDeleted = false, Name = "流程分类", Remark = "流程分类", Sort = 100, Status = 0 }, new { Id = 355694205325381L, Code = "container_type", IsDeleted = false, Name = "托盘类型", Remark = "", Sort = 100, Status = 0 }, new { Id = 355697881423941L, Code = "container_status", IsDeleted = false, Name = "托盘状态", Remark = "", Sort = 100, Status = 0 }, new { Id = 355698224758853L, Code = "area_type", IsDeleted = false, Name = "库区类型", Remark = "", Sort = 100, Status = 0 }, new { Id = 355698441912389L, Code = "place_status", IsDeleted = false, Name = "库位状态", Remark = "", Sort = 100, Status = 0 }, new { Id = 355698661130309L, Code = "height_level", IsDeleted = false, Name = "库位高度", Remark = "", Sort = 100, Status = 0 }, new { Id = 355698855280709L, Code = "material_inspection", IsDeleted = false, Name = "物料检验", Remark = "", Sort = 100, Status = 0 }, new { Id = 355699003580485L, Code = "material_type", IsDeleted = false, Name = "物料类别", Remark = "", Sort = 100, Status = 0 }, new { Id = 355699189051461L, Code = "unit_type", IsDeleted = false, Name = "单位类别", Remark = "", Sort = 100, Status = 0 }, new { Id = 355699314061381L, Code = "unitno_type", IsDeleted = false, Name = "单位编号", Remark = "", Sort = 100, Status = 0 }, new { Id = 355699447029829L, Code = "task_model", IsDeleted = false, Name = "任务方式", Remark = "", Sort = 100, Status = 0 }, new { Id = 355699576467525L, Code = "task_type", IsDeleted = false, Name = "任务类型", Remark = "", Sort = 100, Status = 0 }, new { Id = 355699731099717L, Code = "task_status", IsDeleted = false, Name = "任务状态", Remark = "", Sort = 100, Status = 0 }); }); modelBuilder.Entity("iWare.Wms.Core.SysEmp", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("用户Id"); b.Property("JobNum") .HasMaxLength(30) .HasColumnType("nvarchar(30)") .HasComment("工号"); b.Property("OrgId") .HasColumnType("bigint") .HasComment("机构Id"); b.Property("OrgName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("机构名称"); b.HasKey("Id"); b.ToTable("sys_emp"); b.HasComment("员工表"); b.HasData( new { Id = 142307070910551L, JobNum = "D1001", OrgId = 142307070910539L, OrgName = "华夏集团" }, new { Id = 142307070910552L, JobNum = "D1002", OrgId = 142307070910539L, OrgName = "华夏集团" }, new { Id = 142307070910553L, JobNum = "D1003", OrgId = 142307070910539L, OrgName = "华夏集团" }, new { Id = 142307070910554L, JobNum = "D1001", OrgId = 142307070910547L, OrgName = "租户1公司" }, new { Id = 142307070910555L, JobNum = "D1002", OrgId = 142307070910547L, OrgName = "租户1公司" }, new { Id = 142307070910556L, JobNum = "D1003", OrgId = 142307070910547L, OrgName = "租户1公司" }, new { Id = 142307070910557L, JobNum = "D1001", OrgId = 142307070910548L, OrgName = "租户2公司" }, new { Id = 142307070910558L, JobNum = "D1002", OrgId = 142307070910548L, OrgName = "租户2公司" }, new { Id = 142307070910559L, JobNum = "D1003", OrgId = 142307070910548L, OrgName = "租户2公司" }, new { Id = 358533464608837L, JobNum = "", OrgId = 142307070910539L, OrgName = "伟本股份有限公司" }, new { Id = 358536045723717L, JobNum = "", OrgId = 142307070910542L, OrgName = "研发部" }); }); modelBuilder.Entity("iWare.Wms.Core.SysEmpExtOrgPos", b => { b.Property("SysEmpId") .HasColumnType("bigint") .HasComment("员工Id"); b.Property("SysOrgId") .HasColumnType("bigint") .HasComment("机构Id"); b.Property("SysPosId") .HasColumnType("bigint") .HasComment("职位Id"); b.HasKey("SysEmpId", "SysOrgId", "SysPosId"); b.HasIndex("SysOrgId"); b.HasIndex("SysPosId"); b.ToTable("sys_emp_ext_org_pos"); b.HasComment("员工附属机构职位表"); b.HasData( new { SysEmpId = 142307070910551L, SysOrgId = 142307070910539L, SysPosId = 142307070910547L }, new { SysEmpId = 142307070910551L, SysOrgId = 142307070910540L, SysPosId = 142307070910548L }, new { SysEmpId = 142307070910551L, SysOrgId = 142307070910541L, SysPosId = 142307070910549L }, new { SysEmpId = 142307070910551L, SysOrgId = 142307070910542L, SysPosId = 142307070910550L }, new { SysEmpId = 142307070910553L, SysOrgId = 142307070910542L, SysPosId = 142307070910547L }); }); modelBuilder.Entity("iWare.Wms.Core.SysEmpPos", b => { b.Property("SysEmpId") .HasColumnType("bigint") .HasComment("员工Id"); b.Property("SysPosId") .HasColumnType("bigint") .HasComment("职位Id"); b.HasKey("SysEmpId", "SysPosId"); b.HasIndex("SysPosId"); b.ToTable("sys_emp_pos"); b.HasComment("员工职位表"); b.HasData( new { SysEmpId = 142307070910551L, SysPosId = 142307070910547L }, new { SysEmpId = 142307070910551L, SysPosId = 142307070910548L }, new { SysEmpId = 142307070910552L, SysPosId = 142307070910549L }, new { SysEmpId = 142307070910553L, SysPosId = 142307070910547L }, new { SysEmpId = 358533464608837L, SysPosId = 142307070910550L }, new { SysEmpId = 358536045723717L, SysPosId = 142307070910550L }); }); modelBuilder.Entity("iWare.Wms.Core.SysFile", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("FileBucket") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("文件仓库"); b.Property("FileLocation") .HasColumnType("int") .HasComment("文件存储位置"); b.Property("FileObjectName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("存储到bucket的名称"); b.Property("FileOriginName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("文件名称"); b.Property("FilePath") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("存储路径"); b.Property("FileSizeInfo") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("文件大小信息"); b.Property("FileSizeKb") .HasMaxLength(10) .HasColumnType("nvarchar(10)") .HasComment("文件大小kb"); b.Property("FileSuffix") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("文件后缀"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_file"); b.HasComment("文件信息表"); }); modelBuilder.Entity("iWare.Wms.Core.SysForm", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("FormJson") .IsRequired() .HasColumnType("nvarchar(max)") .HasComment("form表单Json"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Publish") .HasColumnType("bit") .HasComment("是否发布"); b.Property("Title") .IsRequired() .HasColumnType("nvarchar(max)") .HasComment("标题"); b.Property("TypeId") .HasColumnType("bigint") .HasComment("表单类型ID"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.Property("Version") .HasColumnType("int") .HasComment("版本"); b.HasKey("Id"); b.ToTable("sys_forms"); b.HasComment("表单表"); }); modelBuilder.Entity("iWare.Wms.Core.SysLogAudit", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"), 1L, 1); b.Property("ColumnName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("列名"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("操作时间"); b.Property("NewValue") .HasColumnType("nvarchar(max)") .HasComment("新值"); b.Property("OldValue") .HasColumnType("nvarchar(max)") .HasComment("旧值"); b.Property("Operate") .HasColumnType("int") .HasComment("操作方式"); b.Property("TableName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("表名"); b.Property("UserId") .HasColumnType("bigint") .HasComment("操作人Id"); b.Property("UserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("操作人名称"); b.HasKey("Id"); b.ToTable("sys_log_audit"); b.HasComment("审计日志表"); }); modelBuilder.Entity("iWare.Wms.Core.SysLogEx", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"), 1L, 1); b.Property("Account") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("操作人"); b.Property("ClassName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("类名"); b.Property("ExceptionMsg") .HasColumnType("nvarchar(max)") .HasComment("异常信息"); b.Property("ExceptionName") .HasColumnType("nvarchar(max)") .HasComment("异常名称"); b.Property("ExceptionSource") .HasColumnType("nvarchar(max)") .HasComment("异常源"); b.Property("ExceptionTime") .HasColumnType("datetimeoffset") .HasComment("异常时间"); b.Property("MethodName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("方法名"); b.Property("Name") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("名称"); b.Property("ParamsObj") .HasColumnType("nvarchar(max)") .HasComment("参数对象"); b.Property("StackTrace") .HasColumnType("nvarchar(max)") .HasComment("堆栈信息"); b.HasKey("Id"); b.ToTable("sys_log_ex"); b.HasComment("异常日志表"); }); modelBuilder.Entity("iWare.Wms.Core.SysLogOp", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"), 1L, 1); b.Property("Account") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("操作人"); b.Property("Browser") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("浏览器"); b.Property("ClassName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("类名称"); b.Property("ElapsedTime") .HasColumnType("bigint") .HasComment("耗时"); b.Property("Ip") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("IP"); b.Property("Location") .HasMaxLength(1024) .HasColumnType("nvarchar(1024)") .HasComment("地址"); b.Property("Message") .HasColumnType("nvarchar(max)") .HasComment("具体消息"); b.Property("MethodName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("方法名称"); b.Property("Name") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("名称"); b.Property("OpTime") .HasColumnType("datetimeoffset") .HasComment("操作时间"); b.Property("Os") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("操作系统"); b.Property("Param") .HasColumnType("nvarchar(max)") .HasComment("请求参数"); b.Property("ReqMethod") .HasMaxLength(10) .HasColumnType("nvarchar(10)") .HasComment("请求方式"); b.Property("Result") .HasColumnType("nvarchar(max)") .HasComment("返回结果"); b.Property("Success") .HasColumnType("int") .HasComment("是否执行成功"); b.Property("Url") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("请求地址"); b.HasKey("Id"); b.ToTable("sys_log_op"); b.HasComment("操作日志表"); }); modelBuilder.Entity("iWare.Wms.Core.SysLogVis", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"), 1L, 1); b.Property("Account") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("访问人"); b.Property("Browser") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("浏览器"); b.Property("Ip") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("IP"); b.Property("Location") .HasMaxLength(1024) .HasColumnType("nvarchar(1024)") .HasComment("地址"); b.Property("Message") .HasColumnType("nvarchar(max)") .HasComment("具体消息"); b.Property("Name") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("名称"); b.Property("Os") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("操作系统"); b.Property("Success") .HasColumnType("int") .HasComment("是否执行成功"); b.Property("VisTime") .HasColumnType("datetimeoffset") .HasComment("访问时间"); b.Property("VisType") .HasColumnType("int") .HasComment("访问类型"); b.HasKey("Id"); b.ToTable("sys_log_vis"); b.HasComment("访问日志表"); }); modelBuilder.Entity("iWare.Wms.Core.SysMenu", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Application") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("应用分类"); b.Property("Code") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("编码"); b.Property("Component") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("组件地址"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("Icon") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("图标"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Link") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("内链地址"); b.Property("Name") .IsRequired() .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("名称"); b.Property("OpenType") .HasColumnType("int") .HasComment("打开方式"); b.Property("Permission") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("权限标识"); b.Property("Pid") .HasColumnType("bigint") .HasComment("父Id"); b.Property("Pids") .HasColumnType("nvarchar(max)") .HasComment("父Ids"); b.Property("Redirect") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("重定向地址"); b.Property("Remark") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("备注"); b.Property("Router") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("路由地址"); b.Property("Sort") .HasColumnType("int") .HasComment("排序"); b.Property("Status") .HasColumnType("int"); b.Property("Type") .HasColumnType("int") .HasComment("菜单类型"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.Property("Visible") .HasMaxLength(5) .HasColumnType("nvarchar(5)") .HasComment("是否可见"); b.Property("Weight") .HasColumnType("int") .HasComment("权重"); b.HasKey("Id"); b.ToTable("sys_menu"); b.HasComment("菜单表"); b.HasData( new { Id = 142307000914633L, Application = "manage", Code = "sys_mgr", Component = "PageView", Icon = "team", IsDeleted = false, Name = "组织架构", OpenType = 0, Pid = 0L, Pids = "[0],", Router = "/sys", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 142307070910581L, Application = "manage", Code = "sys_org_mgr", Component = "system/org/index", IsDeleted = false, Name = "机构管理", OpenType = 1, Pid = 142307000914633L, Pids = "[0],[142307000914633],", Router = "/org", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070910582L, Application = "manage", Code = "sys_org_mgr_page", IsDeleted = false, Name = "机构查询", OpenType = 0, Permission = "sysOrg:page", Pid = 142307070910581L, Pids = "[0],[142307000914633],[142307070910581],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910583L, Application = "manage", Code = "sys_org_mgr_list", IsDeleted = false, Name = "机构列表", OpenType = 0, Permission = "sysOrg:list", Pid = 142307070910581L, Pids = "[0],[142307000914633],[142307070910581],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910584L, Application = "manage", Code = "sys_org_mgr_add", IsDeleted = false, Name = "机构增加", OpenType = 0, Permission = "sysOrg:add", Pid = 142307070910581L, Pids = "[0],[142307000914633],[142307070910581],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910585L, Application = "manage", Code = "sys_org_mgr_edit", IsDeleted = false, Name = "机构编辑", OpenType = 0, Permission = "sysOrg:edit", Pid = 142307070910581L, Pids = "[0],[142307000914633],[142307070910581],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910586L, Application = "manage", Code = "sys_org_mgr_delete", IsDeleted = false, Name = "机构删除", OpenType = 0, Permission = "sysOrg:delete", Pid = 142307070910581L, Pids = "[0],[142307000914633],[142307070910581],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910587L, Application = "manage", Code = "sys_org_mgr_detail", IsDeleted = false, Name = "机构详情", OpenType = 0, Permission = "sysOrg:detail", Pid = 142307070910581L, Pids = "[0],[142307000914633],[142307070910581],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910588L, Application = "manage", Code = "sys_org_mgr_tree", IsDeleted = false, Name = "机构树", OpenType = 0, Permission = "sysOrg:tree", Pid = 142307070910581L, Pids = "[0],[142307000914633],[142307070910581],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910589L, Application = "manage", Code = "sys_pos_mgr", Component = "system/pos/index", IsDeleted = false, Name = "职位管理", OpenType = 1, Pid = 142307000914633L, Pids = "[0],[142307000914633],", Router = "/pos", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070910590L, Application = "manage", Code = "sys_pos_mgr_page", IsDeleted = false, Name = "职位查询", OpenType = 0, Permission = "sysPos:page", Pid = 142307070910589L, Pids = "[0],[142307000914633],[142307070910589],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910591L, Application = "manage", Code = "sys_pos_mgr_list", IsDeleted = false, Name = "职位列表", OpenType = 0, Permission = "sysPos:list", Pid = 142307070910589L, Pids = "[0],[142307000914633],[142307070910589],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914629L, Application = "manage", Code = "sys_pos_mgr_add", IsDeleted = false, Name = "职位增加", OpenType = 0, Permission = "sysPos:add", Pid = 142307070910589L, Pids = "[0],[142307000914633],[142307070910589],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914630L, Application = "manage", Code = "sys_pos_mgr_edit", IsDeleted = false, Name = "职位编辑", OpenType = 0, Permission = "sysPos:edit", Pid = 142307070910589L, Pids = "[0],[142307000914633],[142307070910589],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914631L, Application = "manage", Code = "sys_pos_mgr_delete", IsDeleted = false, Name = "职位删除", OpenType = 0, Permission = "sysPos:delete", Pid = 142307070910589L, Pids = "[0],[142307000914633],[142307070910589],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914632L, Application = "manage", Code = "sys_pos_mgr_detail", IsDeleted = false, Name = "职位详情", OpenType = 0, Permission = "sysPos:detail", Pid = 142307070910589L, Pids = "[0],[142307000914633],[142307070910589],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910563L, Application = "manage", Code = "auth_manager", Component = "PageView", Icon = "safety-certificate", IsDeleted = false, Name = "权限管理", OpenType = 0, Pid = 0L, Pids = "[0],", Router = "/auth", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 142307070910564L, Application = "manage", Code = "sys_user_mgr", Component = "system/user/index", IsDeleted = false, Name = "用户管理", OpenType = 1, Pid = 142307070910563L, Pids = "[0],[142307070910563],", Router = "/mgr_user", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070910565L, Application = "manage", Code = "sys_user_mgr_page", IsDeleted = false, Name = "用户查询", OpenType = 0, Permission = "sysUser:page", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910566L, Application = "manage", Code = "sys_user_mgr_edit", IsDeleted = false, Name = "用户编辑", OpenType = 0, Permission = "sysUser:edit", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910567L, Application = "manage", Code = "sys_user_mgr_add", IsDeleted = false, Name = "用户增加", OpenType = 0, Permission = "sysUser:add", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910568L, Application = "manage", Code = "sys_user_mgr_delete", IsDeleted = false, Name = "用户删除", OpenType = 0, Permission = "sysUser:delete", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910569L, Application = "manage", Code = "sys_user_mgr_detail", IsDeleted = false, Name = "用户详情", OpenType = 0, Permission = "sysUser:detail", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910570L, Application = "manage", Code = "sys_user_mgr_export", IsDeleted = false, Name = "用户导出", OpenType = 0, Permission = "sysUser:export", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910571L, Application = "manage", Code = "sys_user_mgr_selector", IsDeleted = false, Name = "用户选择器", OpenType = 0, Permission = "sysUser:selector", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910572L, Application = "manage", Code = "sys_user_mgr_grant_role", IsDeleted = false, Name = "用户授权角色", OpenType = 0, Permission = "sysUser:grantRole", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910573L, Application = "manage", Code = "sys_user_mgr_own_role", IsDeleted = false, Name = "用户拥有角色", OpenType = 0, Permission = "sysUser:ownRole", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910574L, Application = "manage", Code = "sys_user_mgr_grant_data", IsDeleted = false, Name = "用户授权数据", OpenType = 0, Permission = "sysUser:grantData", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910575L, Application = "manage", Code = "sys_user_mgr_own_data", IsDeleted = false, Name = "用户拥有数据", OpenType = 0, Permission = "sysUser:ownData", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910576L, Application = "manage", Code = "sys_user_mgr_update_info", IsDeleted = false, Name = "用户更新信息", OpenType = 0, Permission = "sysUser:updateInfo", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910577L, Application = "manage", Code = "sys_user_mgr_update_pwd", IsDeleted = false, Name = "用户修改密码", OpenType = 0, Permission = "sysUser:updatePwd", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910578L, Application = "manage", Code = "sys_user_mgr_change_status", IsDeleted = false, Name = "用户修改状态", OpenType = 0, Permission = "sysUser:changeStatus", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910579L, Application = "manage", Code = "sys_user_mgr_update_avatar", IsDeleted = false, Name = "用户修改头像", OpenType = 0, Permission = "sysUser:updateAvatar", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070910580L, Application = "manage", Code = "sys_user_mgr_reset_pwd", IsDeleted = false, Name = "用户重置密码", OpenType = 0, Permission = "sysUser:resetPwd", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918777L, Application = "manage", Code = "sys_user_mgr_login", IsDeleted = false, Name = "用户登录信息", OpenType = 0, Permission = "getLoginUser", Pid = 142307070910564L, Pids = "[0],[142307070910563],[142307070910564],", Sort = 100, Status = 1, Type = 2, Visible = "N", Weight = 1 }, new { Id = 142307070914651L, Application = "manage", Code = "sys_role_mgr", Component = "system/role/index", IsDeleted = false, Name = "角色管理", OpenType = 1, Pid = 142307070910563L, Pids = "[0],[142307070910563],", Router = "/role", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070914652L, Application = "manage", Code = "sys_role_mgr_page", IsDeleted = false, Name = "角色查询", OpenType = 0, Permission = "sysRole:page", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914653L, Application = "manage", Code = "sys_role_mgr_add", IsDeleted = false, Name = "角色增加", OpenType = 0, Permission = "sysRole:add", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914654L, Application = "manage", Code = "sys_role_mgr_edit", IsDeleted = false, Name = "角色编辑", OpenType = 0, Permission = "sysRole:edit", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914655L, Application = "manage", Code = "sys_role_mgr_delete", IsDeleted = false, Name = "角色删除", OpenType = 0, Permission = "sysRole:delete", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914656L, Application = "manage", Code = "sys_role_mgr_detail", IsDeleted = false, Name = "角色详情", OpenType = 0, Permission = "sysRole:detail", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914657L, Application = "manage", Code = "sys_role_mgr_drop_down", IsDeleted = false, Name = "角色下拉", OpenType = 0, Permission = "sysRole:dropDown", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914658L, Application = "manage", Code = "sys_role_mgr_grant_menu", IsDeleted = false, Name = "角色授权菜单", OpenType = 0, Permission = "sysRole:grantMenu", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914659L, Application = "manage", Code = "sys_role_mgr_own_menu", IsDeleted = false, Name = "角色拥有菜单", OpenType = 0, Permission = "sysRole:ownMenu", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914660L, Application = "manage", Code = "sys_role_mgr_grant_data", IsDeleted = false, Name = "角色授权数据", OpenType = 0, Permission = "sysRole:grantData", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914661L, Application = "manage", Code = "sys_role_mgr_own_data", IsDeleted = false, Name = "角色拥有数据", OpenType = 0, Permission = "sysRole:ownData", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914648L, Application = "manage", Code = "sys_menu_mgr_grant_tree", IsDeleted = false, Name = "菜单授权树", OpenType = 0, Permission = "sysMenu:treeForGrant", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914649L, Application = "manage", Code = "sys_menu_mgr_tree", IsDeleted = false, Name = "菜单树", OpenType = 0, Permission = "sysMenu:tree", Pid = 142307070914651L, Pids = "[0],[142307070910563],[142307070914651],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914633L, Application = "system", Code = "sys_platform", Component = "PageView", Icon = "safety-certificate", IsDeleted = false, Name = "平台管理", OpenType = 0, Pid = 0L, Pids = "[0],", Router = "/platform", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 142307070914634L, Application = "system", Code = "sys_app_mgr", Component = "system/app/index", IsDeleted = false, Name = "应用管理", OpenType = 1, Pid = 142307070914633L, Pids = "[0],[142307070914633],", Router = "/app", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070914635L, Application = "system", Code = "sys_app_mgr_page", IsDeleted = false, Name = "应用查询", OpenType = 0, Permission = "sysApp:page", Pid = 142307070914634L, Pids = "[0],[142307070914633],[142307070914634],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914636L, Application = "system", Code = "sys_app_mgr_list", IsDeleted = false, Name = "应用列表", OpenType = 0, Permission = "sysApp:list", Pid = 142307070914634L, Pids = "[0],[142307070914633],[142307070914634],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914637L, Application = "system", Code = "sys_app_mgr_add", IsDeleted = false, Name = "应用增加", OpenType = 0, Permission = "sysApp:add", Pid = 142307070914634L, Pids = "[0],[142307070914633],[142307070914634],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914638L, Application = "system", Code = "sys_app_mgr_edit", IsDeleted = false, Name = "应用编辑", OpenType = 0, Permission = "sysApp:edit", Pid = 142307070914634L, Pids = "[0],[142307070914633],[142307070914634],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914639L, Application = "system", Code = "sys_app_mgr_delete", IsDeleted = false, Name = "应用删除", OpenType = 0, Permission = "sysApp:delete", Pid = 142307070914634L, Pids = "[0],[142307070914633],[142307070914634],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914640L, Application = "system", Code = "sys_app_mgr_detail", IsDeleted = false, Name = "应用详情", OpenType = 0, Permission = "sysApp:detail", Pid = 142307070914634L, Pids = "[0],[142307070914633],[142307070914634],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914641L, Application = "system", Code = "sys_app_mgr_set_as_default", IsDeleted = false, Name = "设为默认应用", OpenType = 0, Permission = "sysApp:setAsDefault", Pid = 142307070914634L, Pids = "[0],[142307070914633],[142307070914634],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914642L, Application = "system", Code = "sys_menu_mgr", Component = "system/menu/index", IsDeleted = false, Name = "菜单管理", OpenType = 1, Pid = 142307070914633L, Pids = "[0],[142307070914633],", Router = "/menu", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070914643L, Application = "system", Code = "sys_menu_mgr_list", IsDeleted = false, Name = "菜单列表", OpenType = 0, Permission = "sysMenu:list", Pid = 142307070914642L, Pids = "[0],[142307070914633],[142307070914642],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914644L, Application = "system", Code = "sys_menu_mgr_add", IsDeleted = false, Name = "菜单增加", OpenType = 0, Permission = "sysMenu:add", Pid = 142307070914642L, Pids = "[0],[142307070914633],[142307070914642],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914645L, Application = "system", Code = "sys_menu_mgr_edit", IsDeleted = false, Name = "菜单编辑", OpenType = 0, Permission = "sysMenu:edit", Pid = 142307070914642L, Pids = "[0],[142307070914633],[142307070914642],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914646L, Application = "system", Code = "sys_menu_mgr_delete", IsDeleted = false, Name = "菜单删除", OpenType = 0, Permission = "sysMenu:delete", Pid = 142307070914642L, Pids = "[0],[142307070914633],[142307070914642],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914647L, Application = "system", Code = "sys_menu_mgr_detail", IsDeleted = false, Name = "菜单详情", OpenType = 0, Permission = "sysMenu:detail", Pid = 142307070914642L, Pids = "[0],[142307070914633],[142307070914642],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914650L, Application = "system", Code = "sys_menu_mgr_change", IsDeleted = false, Name = "菜单切换", OpenType = 0, Permission = "sysMenu:change", Pid = 142307070914642L, Pids = "[0],[142307070914633],[142307070914642],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914662L, Application = "system", Code = "system_tools", Component = "PageView", Icon = "euro", IsDeleted = false, Name = "开发管理", OpenType = 0, Pid = 0L, Pids = "[0],", Router = "/tools", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 142307070914663L, Application = "system", Code = "system_tools_config", Component = "system/config/index", IsDeleted = false, Name = "系统配置", OpenType = 1, Pid = 142307070914662L, Pids = "[0],[142307070914662],", Router = "/config", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070914664L, Application = "system", Code = "system_tools_config_page", IsDeleted = false, Name = "配置查询", OpenType = 0, Permission = "sysConfig:page", Pid = 142307070914663L, Pids = "[0],[142307070914662],[142307070914663],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914665L, Application = "system", Code = "system_tools_config_list", IsDeleted = false, Name = "配置列表", OpenType = 0, Permission = "sysConfig:list", Pid = 142307070914663L, Pids = "[0],[142307070914662],[142307070914663],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914666L, Application = "system", Code = "system_tools_config_add", IsDeleted = false, Name = "配置增加", OpenType = 0, Permission = "sysConfig:add", Pid = 142307070914663L, Pids = "[0],[142307070914662],[142307070914663],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914667L, Application = "system", Code = "system_tools_config_edit", IsDeleted = false, Name = "配置编辑", OpenType = 0, Permission = "sysConfig:edit", Pid = 142307070914663L, Pids = "[0],[142307070914662],[142307070914663],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914668L, Application = "system", Code = "system_tools_config_delete", IsDeleted = false, Name = "配置删除", OpenType = 0, Permission = "sysConfig:delete", Pid = 142307070914663L, Pids = "[0],[142307070914662],[142307070914663],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914669L, Application = "system", Code = "system_tools_config_detail", IsDeleted = false, Name = "配置详情", OpenType = 0, Permission = "sysConfig:detail", Pid = 142307070914663L, Pids = "[0],[142307070914662],[142307070914663],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914678L, Application = "system", Code = "sys_dict_mgr", Component = "system/dict/index", IsDeleted = false, Name = "字典管理", OpenType = 1, Pid = 142307070914662L, Pids = "[0],[142307070914662],", Router = "/dict", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070914679L, Application = "system", Code = "sys_dict_mgr_dict_type_page", IsDeleted = false, Name = "字典类型查询", OpenType = 0, Permission = "sysDictType:page", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914680L, Application = "system", Code = "sys_dict_mgr_dict_type_list", IsDeleted = false, Name = "字典类型列表", OpenType = 0, Permission = "sysDictType:list", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914681L, Application = "system", Code = "sys_dict_mgr_dict_type_add", IsDeleted = false, Name = "字典类型增加", OpenType = 0, Permission = "sysDictType:add", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914682L, Application = "system", Code = "sys_dict_mgr_dict_type_delete", IsDeleted = false, Name = "字典类型删除", OpenType = 0, Permission = "sysDictType:delete", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914683L, Application = "system", Code = "sys_dict_mgr_dict_type_edit", IsDeleted = false, Name = "字典类型编辑", OpenType = 0, Permission = "sysDictType:edit", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914684L, Application = "system", Code = "sys_dict_mgr_dict_type_detail", IsDeleted = false, Name = "字典类型详情", OpenType = 0, Permission = "sysDictType:detail", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914685L, Application = "system", Code = "sys_dict_mgr_dict_type_drop_down", IsDeleted = false, Name = "字典类型下拉", OpenType = 0, Permission = "sysDictType:dropDown", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914686L, Application = "system", Code = "sys_dict_mgr_dict_type_change_status", IsDeleted = false, Name = "字典类型修改状态", OpenType = 0, Permission = "sysDictType:changeStatus", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070914687L, Application = "system", Code = "sys_dict_mgr_dict_page", IsDeleted = false, Name = "字典值查询", OpenType = 0, Permission = "sysDictData:page", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918725L, Application = "system", Code = "sys_dict_mgr_dict_list", IsDeleted = false, Name = "字典值列表", OpenType = 0, Permission = "sysDictData:list", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918726L, Application = "system", Code = "sys_dict_mgr_dict_add", IsDeleted = false, Name = "字典值增加", OpenType = 0, Permission = "sysDictData:add", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918727L, Application = "system", Code = "sys_dict_mgr_dict_delete", IsDeleted = false, Name = "字典值删除", OpenType = 0, Permission = "sysDictData:delete", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918728L, Application = "system", Code = "sys_dict_mgr_dict_edit", IsDeleted = false, Name = "字典值编辑", OpenType = 0, Permission = "sysDictData:edit", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918729L, Application = "system", Code = "sys_dict_mgr_dict_detail", IsDeleted = false, Name = "字典值详情", OpenType = 0, Permission = "sysDictData:detail", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918730L, Application = "system", Code = "sys_dict_mgr_dict_change_status", IsDeleted = false, Name = "字典值修改状态", OpenType = 0, Permission = "sysDictData:changeStatus", Pid = 142307070914678L, Pids = "[0],[142307070914662],[142307070914678],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918731L, Application = "system", Code = "sys_swagger_mgr", Component = "Iframe", IsDeleted = false, Link = "http://localhost:6677/swagger/", Name = "接口文档", OpenType = 2, Pid = 142307070914662L, Pids = "[0],[142307070914662],", Router = "/swagger", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070918732L, Application = "manage", Code = "sys_log_mgr", Component = "PageView", Icon = "read", IsDeleted = false, Name = "日志管理", OpenType = 0, Pid = 0L, Pids = "[0],", Router = "/log", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 142307070918733L, Application = "manage", Code = "sys_log_mgr_vis_log", Component = "system/log/vislog/index", IsDeleted = false, Name = "访问日志", OpenType = 1, Pid = 142307070918732L, Pids = "[0],[142307070918732],", Router = "/vislog", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070918734L, Application = "manage", Code = "sys_log_mgr_vis_log_page", IsDeleted = false, Name = "访问日志查询", OpenType = 0, Permission = "sysVisLog:page", Pid = 142307070918733L, Pids = "[0],[142307070918732],[142307070918733],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918735L, Application = "manage", Code = "sys_log_mgr_vis_log_delete", IsDeleted = false, Name = "访问日志清空", OpenType = 0, Permission = "sysVisLog:delete", Pid = 142307070918733L, Pids = "[0],[142307070918732],[142307070918733],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918736L, Application = "manage", Code = "sys_log_mgr_op_log", Component = "system/log/oplog/index", IsDeleted = false, Name = "操作日志", OpenType = 1, Pid = 142307070918732L, Pids = "[0],[142307070918732],", Router = "/oplog", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070918737L, Application = "manage", Code = "sys_log_mgr_op_log_page", IsDeleted = false, Name = "操作日志查询", OpenType = 0, Permission = "sysOpLog:page", Pid = 142307070918736L, Pids = "[0],[142307070918732],[142307070918736],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918738L, Application = "manage", Code = "sys_log_mgr_op_log_delete", IsDeleted = false, Name = "操作日志清空", OpenType = 0, Permission = "sysOpLog:delete", Pid = 142307070918736L, Pids = "[0],[142307070918732],[142307070918736],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070911739L, Application = "manage", Code = "sys_log_mgr_ex_log", Component = "system/log/exlog/index", IsDeleted = false, Name = "异常日志", OpenType = 1, Pid = 142307070918732L, Pids = "[0],[142307070918732],", Router = "/exlog", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070911740L, Application = "manage", Code = "sys_log_mgr_ex_log_page", IsDeleted = false, Name = "异常日志查询", OpenType = 0, Permission = "sysExLog:page", Pid = 142307070911739L, Pids = "[0],[142307070918732],[142307070911739],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070911741L, Application = "manage", Code = "sys_log_mgr_ex_log_delete", IsDeleted = false, Name = "异常日志清空", OpenType = 0, Permission = "sysExLog:delete", Pid = 142307070911739L, Pids = "[0],[142307070918732],[142307070911739],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918739L, Application = "system", Code = "sys_monitor_mgr", Component = "PageView", Icon = "deployment-unit", IsDeleted = false, Name = "系统监控", OpenType = 0, Pid = 0L, Pids = "[0],", Router = "/monitor", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 142307070918740L, Application = "system", Code = "sys_monitor_mgr_machine_monitor", Component = "system/machine/index", IsDeleted = false, Name = "服务监控", OpenType = 1, Pid = 142307070918739L, Pids = "[0],[142307070918739],", Router = "/machine", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070918741L, Application = "system", Code = "sys_monitor_mgr_machine_monitor_query", IsDeleted = false, Name = "服务监控查询", OpenType = 0, Permission = "sysMachine:query", Pid = 142307070918740L, Pids = "[0],[142307070918739],[142307070918740],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918742L, Application = "system", Code = "sys_monitor_mgr_online_user", Component = "system/onlineUser/index", IsDeleted = false, Name = "在线用户", OpenType = 1, Pid = 142307070918739L, Pids = "[0],[142307070918739],", Router = "/onlineUser", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070918743L, Application = "system", Code = "sys_monitor_mgr_online_user_page", IsDeleted = false, Name = "在线用户查询", OpenType = 0, Permission = "sysOnlineUser:page", Pid = 142307070918742L, Pids = "[0],[142307070918739],[142307070918742],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918744L, Application = "system", Code = "sys_monitor_mgr_online_user_force_exist", IsDeleted = false, Name = "在线用户强退", OpenType = 0, Permission = "sysOnlineUser:forceExist", Pid = 142307070918742L, Pids = "[0],[142307070918739],[142307070918742],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918745L, Application = "system", Code = "sys_monitor_mgr_druid", Component = "Iframe", IsDeleted = false, Link = "http://localhost:82/druid/login.html", Name = "数据监控", OpenType = 2, Pid = 142307070918739L, Pids = "[0],[142307070918739],", Router = "/druid", Sort = 100, Status = 0, Type = 1, Visible = "N", Weight = 1 }, new { Id = 142307070918746L, Application = "manage", Code = "sys_notice", Component = "PageView", Icon = "sound", IsDeleted = false, Name = "通知公告", OpenType = 0, Pid = 0L, Pids = "[0],", Router = "/notice", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 142307070918747L, Application = "manage", Code = "sys_notice_mgr", Component = "system/notice/index", IsDeleted = false, Name = "公告管理", OpenType = 1, Pid = 142307070918746L, Pids = "[0],[142307070918746],", Router = "/notice", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070918748L, Application = "manage", Code = "sys_notice_mgr_page", IsDeleted = false, Name = "公告查询", OpenType = 0, Permission = "sysNotice:page", Pid = 142307070918747L, Pids = "[0],[142307070918746],[142307070918747],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918749L, Application = "manage", Code = "sys_notice_mgr_add", IsDeleted = false, Name = "公告增加", OpenType = 0, Permission = "sysNotice:add", Pid = 142307070918747L, Pids = "[0],[142307070918746],[142307070918747],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918750L, Application = "manage", Code = "sys_notice_mgr_edit", IsDeleted = false, Name = "公告编辑", OpenType = 0, Permission = "sysNotice:edit", Pid = 142307070918747L, Pids = "[0],[142307070918746],[142307070918747],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918751L, Application = "manage", Code = "sys_notice_mgr_delete", IsDeleted = false, Name = "公告删除", OpenType = 0, Permission = "sysNotice:delete", Pid = 142307070918747L, Pids = "[0],[142307070918746],[142307070918747],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918752L, Application = "manage", Code = "sys_notice_mgr_detail", IsDeleted = false, Name = "公告查看", OpenType = 0, Permission = "sysNotice:detail", Pid = 142307070918747L, Pids = "[0],[142307070918746],[142307070918747],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918753L, Application = "manage", Code = "sys_notice_mgr_changeStatus", IsDeleted = false, Name = "公告修改状态", OpenType = 0, Permission = "sysNotice:changeStatus", Pid = 142307070918747L, Pids = "[0],[142307070918746],[142307070918747],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918754L, Application = "manage", Code = "sys_notice_mgr_received", Component = "system/noticeReceived/index", IsDeleted = false, Name = "已收公告", OpenType = 1, Pid = 142307070918746L, Pids = "[0],[142307070918746],", Router = "/noticeReceived", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070918755L, Application = "manage", Code = "sys_notice_mgr_received_page", IsDeleted = false, Name = "已收公告查询", OpenType = 0, Permission = "sysNotice:received", Pid = 142307070918754L, Pids = "[0],[142307070918746],[142307070918754],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918756L, Application = "manage", Code = "sys_file_mgr", Component = "PageView", Icon = "file", IsDeleted = false, Name = "文件管理", OpenType = 0, Pid = 0L, Pids = "[0],", Router = "/file", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 142307070918757L, Application = "manage", Code = "sys_file_mgr_sys_file", Component = "system/file/index", IsDeleted = false, Name = "系统文件", OpenType = 1, Pid = 142307070918756L, Pids = "[0],[142307070918756],", Router = "/file", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070918758L, Application = "manage", Code = "sys_file_mgr_sys_file_page", IsDeleted = false, Name = "文件查询", OpenType = 0, Permission = "sysFileInfo:page", Pid = 142307070918757L, Pids = "[0],[142307070918756],[142307070918757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918759L, Application = "manage", Code = "sys_file_mgr_sys_file_list", IsDeleted = false, Name = "文件列表", OpenType = 0, Permission = "sysFileInfo:list", Pid = 142307070918757L, Pids = "[0],[142307070918756],[142307070918757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918760L, Application = "manage", Code = "sys_file_mgr_sys_file_delete", IsDeleted = false, Name = "文件删除", OpenType = 0, Permission = "sysFileInfo:delete", Pid = 142307070918757L, Pids = "[0],[142307070918756],[142307070918757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918761L, Application = "manage", Code = "sys_file_mgr_sys_file_detail", IsDeleted = false, Name = "文件详情", OpenType = 0, Permission = "sysFileInfo:detail", Pid = 142307070918757L, Pids = "[0],[142307070918756],[142307070918757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918762L, Application = "manage", Code = "sys_file_mgr_sys_file_upload", IsDeleted = false, Name = "文件上传", OpenType = 0, Permission = "sysFileInfo:upload", Pid = 142307070918757L, Pids = "[0],[142307070918756],[142307070918757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918763L, Application = "manage", Code = "sys_file_mgr_sys_file_download", IsDeleted = false, Name = "文件下载", OpenType = 0, Permission = "sysFileInfo:download", Pid = 142307070918757L, Pids = "[0],[142307070918756],[142307070918757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918764L, Application = "manage", Code = "sys_file_mgr_sys_file_preview", IsDeleted = false, Name = "图片预览", OpenType = 0, Permission = "sysFileInfo:preview", Pid = 142307070918757L, Pids = "[0],[142307070918756],[142307070918757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070922874L, Application = "manage", Code = "sys_file_mgr_sys_file_upload_avatar", IsDeleted = false, Name = "头像上传", OpenType = 0, Permission = "sysFileInfo:uploadAvatar", Pid = 142307070918757L, Pids = "[0],[142307070918756],[142307070918757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070922875L, Application = "manage", Code = "sys_file_mgr_sys_file_upload_document", IsDeleted = false, Name = "文档上传", OpenType = 0, Permission = "sysFileInfo:uploadDocument", Pid = 142307070918757L, Pids = "[0],[142307070918756],[142307070918757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070922876L, Application = "manage", Code = "sys_file_mgr_sys_file_upload_shop", IsDeleted = false, Name = "商城上传", OpenType = 0, Permission = "sysFileInfo:uploadShop", Pid = 142307070918757L, Pids = "[0],[142307070918756],[142307070918757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918765L, Application = "system", Code = "sys_timers", Component = "PageView", Icon = "dashboard", IsDeleted = false, Name = "任务调度", OpenType = 0, Pid = 0L, Pids = "[0],", Router = "/timers", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 142307070918766L, Application = "system", Code = "sys_timers_mgr", Component = "system/timers/index", IsDeleted = false, Name = "任务管理", OpenType = 1, Pid = 142307070918765L, Pids = "[0],[142307070918765],", Router = "/timers", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070918767L, Application = "system", Code = "sys_timers_mgr_page", IsDeleted = false, Name = "定时任务查询", OpenType = 0, Permission = "sysTimers:page", Pid = 142307070918766L, Pids = "[0],[142307070918765],[142307070918766],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918768L, Application = "system", Code = "sys_timers_mgr_list", IsDeleted = false, Name = "定时任务列表", OpenType = 0, Permission = "sysTimers:list", Pid = 142307070918766L, Pids = "[0],[142307070918765],[142307070918766],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918769L, Application = "system", Code = "sys_timers_mgr_detail", IsDeleted = false, Name = "定时任务详情", OpenType = 0, Permission = "sysTimers:detail", Pid = 142307070918766L, Pids = "[0],[142307070918765],[142307070918766],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918770L, Application = "system", Code = "sys_timers_mgr_add", IsDeleted = false, Name = "定时任务增加", OpenType = 0, Permission = "sysTimers:add", Pid = 142307070918766L, Pids = "[0],[142307070918765],[142307070918766],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918771L, Application = "system", Code = "sys_timers_mgr_delete", IsDeleted = false, Name = "定时任务删除", OpenType = 0, Permission = "sysTimers:delete", Pid = 142307070918766L, Pids = "[0],[142307070918765],[142307070918766],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918772L, Application = "system", Code = "sys_timers_mgr_edit", IsDeleted = false, Name = "定时任务编辑", OpenType = 0, Permission = "sysTimers:edit", Pid = 142307070918766L, Pids = "[0],[142307070918765],[142307070918766],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918773L, Application = "system", Code = "sys_timers_mgr_get_action_classes", IsDeleted = false, Name = "定时任务可执行列表", OpenType = 0, Permission = "sysTimers:getActionClasses", Pid = 142307070918766L, Pids = "[0],[142307070918765],[142307070918766],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918774L, Application = "system", Code = "sys_timers_mgr_start", IsDeleted = false, Name = "定时任务启动", OpenType = 0, Permission = "sysTimers:start", Pid = 142307070918766L, Pids = "[0],[142307070918765],[142307070918766],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918775L, Application = "system", Code = "sys_timers_mgr_stop", IsDeleted = false, Name = "定时任务关闭", OpenType = 0, Permission = "sysTimers:stop", Pid = 142307070918766L, Pids = "[0],[142307070918765],[142307070918766],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 142307070918776L, Application = "system", Code = "code_gen", Component = "PageView", Icon = "thunderbolt", IsDeleted = false, Name = "代码生成", OpenType = 0, Pid = 0L, Pids = "[0],", Router = "/codeGenerate", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 142307070918778L, Application = "system", Code = "low_code", Component = "gen/lowCode/index", IsDeleted = false, Name = "表单设计", OpenType = 0, Pid = 142307070918776L, Pids = "[0],[142307070918776],", Router = "/lowCode/index", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070918779L, Application = "system", Code = "code_gen_gen", Component = "gen/codeGenerate/index", IsDeleted = false, Name = "代码生成", OpenType = 0, Pid = 142307070918776L, Pids = "[0],[142307070918776],", Router = "/codeGenerate/index", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 142307070922870L, Application = "system", Code = "form_design", Component = "system/formDesign/index", IsDeleted = false, Name = "表单设计", OpenType = 0, Pid = 285599875018821L, Pids = "[0],[285599875018821],", Router = "/formDesign/index", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 285599875018821L, Application = "system", Code = "sys_formDesign", Component = "PageView", Icon = "snippets", IsDeleted = false, Name = "表单管理", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/formDesign", Sort = 100, Status = 0, Type = 0, Visible = "Y", Weight = 1 }, new { Id = 285599875018823L, Application = "system", Code = "sys_formDesign_list", Component = "system/formDesign/list", IsDeleted = false, Name = "表单列表", OpenType = 1, Pid = 285599875018821L, Pids = "[0],[285599875018821],", Router = "/formDesign/list", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 1 }, new { Id = 285635743518789L, Application = "system", Code = "sys_formDesign_edit", Component = "system/formDesign/edit", IsDeleted = false, Name = "修改表单", OpenType = 1, Pid = 285599875018821L, Pids = "[0],[285599875018821],", Router = "/formDesign/edit", Sort = 100, Status = 0, Type = 1, Visible = "N", Weight = 1 }, new { Id = 285640475689029L, Application = "system", Code = "btn_formDesign_edit", Component = "", IsDeleted = false, Name = "修改表单", OpenType = 0, Permission = "formmanager:edit", Pid = 285599875018823L, Pids = "[0],[285599875018821],[285599875018823],", Router = "", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 285640599859269L, Application = "system", Code = "btn_formDesign_delete", Component = "", IsDeleted = false, Name = "删除表单", OpenType = 0, Permission = "formmanager:delete", Pid = 285599875018823L, Pids = "[0],[285599875018821],[285599875018823],", Router = "", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 285640740945989L, Application = "system", Code = "btn_formDesign_page", Component = "", IsDeleted = false, Name = "表单列表", OpenType = 0, Permission = "formmanager:page", Pid = 285599875018823L, Pids = "[0],[285599875018821],[285599875018823],", Router = "", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 1 }, new { Id = 355687925174341L, Application = "busiapp", Code = "Maste_wmscontainer_mgr", Component = "main/WmsContainer/index", Icon = "border", IsDeleted = false, Name = "托盘信息", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/wmscontainer", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 355687925178437L, Application = "busiapp", Code = "Maste_wmscontainer_mgr_page", IsDeleted = false, Name = "托盘信息查询", OpenType = 0, Permission = "WmsContainer:page", Pid = 355687925174341L, Pids = "[0],[355687924998213],[355687925174341],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355687925178438L, Application = "busiapp", Code = "Maste_wmscontainer_mgr_detail", IsDeleted = false, Name = "托盘信息详情", OpenType = 0, Permission = "WmsContainer:detail", Pid = 355687925174341L, Pids = "[0],[355687924998213],[355687925174341],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355687925178439L, Application = "busiapp", Code = "Maste_wmscontainer_mgr_add", IsDeleted = false, Name = "托盘信息增加", OpenType = 0, Permission = "WmsContainer:add", Pid = 355687925174341L, Pids = "[0],[355687924998213],[355687925174341],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355687925182533L, Application = "busiapp", Code = "Maste_wmscontainer_mgr_delete", IsDeleted = false, Name = "托盘信息删除", OpenType = 0, Permission = "WmsContainer:delete", Pid = 355687925174341L, Pids = "[0],[355687924998213],[355687925174341],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355687925182534L, Application = "busiapp", Code = "Maste_wmscontainer_mgr_edit", IsDeleted = false, Name = "托盘信息编辑", OpenType = 0, Permission = "WmsContainer:edit", Pid = 355687925174341L, Pids = "[0],[355687924998213],[355687925174341],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355688792178757L, Application = "busiapp", Code = "Maste_wmsarea_mgr", Component = "main/WmsArea/index", Icon = "appstore", IsDeleted = false, Name = "库区信息", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/wmsarea", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 355688792182853L, Application = "busiapp", Code = "Maste_wmsarea_mgr_page", IsDeleted = false, Name = "库区信息查询", OpenType = 0, Permission = "WmsArea:page", Pid = 355688792178757L, Pids = "[0],[355688792162373],[355688792178757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355688792182854L, Application = "busiapp", Code = "Maste_wmsarea_mgr_detail", IsDeleted = false, Name = "库区信息详情", OpenType = 0, Permission = "WmsArea:detail", Pid = 355688792178757L, Pids = "[0],[355688792162373],[355688792178757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355688792186949L, Application = "busiapp", Code = "Maste_wmsarea_mgr_add", IsDeleted = false, Name = "库区信息增加", OpenType = 0, Permission = "WmsArea:add", Pid = 355688792178757L, Pids = "[0],[355688792162373],[355688792178757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355688792186950L, Application = "busiapp", Code = "Maste_wmsarea_mgr_delete", IsDeleted = false, Name = "库区信息删除", OpenType = 0, Permission = "WmsArea:delete", Pid = 355688792178757L, Pids = "[0],[355688792162373],[355688792178757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355688792186951L, Application = "busiapp", Code = "Maste_wmsarea_mgr_edit", IsDeleted = false, Name = "库区信息编辑", OpenType = 0, Permission = "WmsArea:edit", Pid = 355688792178757L, Pids = "[0],[355688792162373],[355688792178757],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355689496985669L, Application = "busiapp", Code = "Maste_wmsplace_mgr", Component = "main/WmsPlace/index", Icon = "table", IsDeleted = false, Name = "库位信息", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/wmsplace", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 355689496989765L, Application = "busiapp", Code = "Maste_wmsplace_mgr_page", IsDeleted = false, Name = "库位信息查询", OpenType = 0, Permission = "WmsPlace:page", Pid = 355689496985669L, Pids = "[0],[355689496977477],[355689496985669],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355689496993861L, Application = "busiapp", Code = "Maste_wmsplace_mgr_detail", IsDeleted = false, Name = "库位信息详情", OpenType = 0, Permission = "WmsPlace:detail", Pid = 355689496985669L, Pids = "[0],[355689496977477],[355689496985669],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355689496993862L, Application = "busiapp", Code = "Maste_wmsplace_mgr_add", IsDeleted = false, Name = "库位信息增加", OpenType = 0, Permission = "WmsPlace:add", Pid = 355689496985669L, Pids = "[0],[355689496977477],[355689496985669],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355689496993863L, Application = "busiapp", Code = "Maste_wmsplace_mgr_delete", IsDeleted = false, Name = "库位信息删除", OpenType = 0, Permission = "WmsPlace:delete", Pid = 355689496985669L, Pids = "[0],[355689496977477],[355689496985669],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355689496993864L, Application = "busiapp", Code = "Maste_wmsplace_mgr_edit", IsDeleted = false, Name = "库位信息编辑", OpenType = 0, Permission = "WmsPlace:edit", Pid = 355689496985669L, Pids = "[0],[355689496977477],[355689496985669],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355690042511429L, Application = "busiapp", Code = "Maste_wmsmaterial_mgr", Component = "main/WmsMaterial/index", Icon = "barcode", IsDeleted = false, Name = "物料信息", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/wmsmaterial", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 355690042515525L, Application = "busiapp", Code = "Maste_wmsmaterial_mgr_page", IsDeleted = false, Name = "物料信息查询", OpenType = 0, Permission = "WmsMaterial:page", Pid = 355690042511429L, Pids = "[0],[355690042499141],[355690042511429],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355690042519621L, Application = "busiapp", Code = "Maste_wmsmaterial_mgr_detail", IsDeleted = false, Name = "物料信息详情", OpenType = 0, Permission = "WmsMaterial:detail", Pid = 355690042511429L, Pids = "[0],[355690042499141],[355690042511429],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355690042519622L, Application = "busiapp", Code = "Maste_wmsmaterial_mgr_add", IsDeleted = false, Name = "物料信息增加", OpenType = 0, Permission = "WmsMaterial:add", Pid = 355690042511429L, Pids = "[0],[355690042499141],[355690042511429],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355690042519623L, Application = "busiapp", Code = "Maste_wmsmaterial_mgr_delete", IsDeleted = false, Name = "物料信息删除", OpenType = 0, Permission = "WmsMaterial:delete", Pid = 355690042511429L, Pids = "[0],[355690042499141],[355690042511429],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355690042519624L, Application = "busiapp", Code = "Maste_wmsmaterial_mgr_edit", IsDeleted = false, Name = "物料信息编辑", OpenType = 0, Permission = "WmsMaterial:edit", Pid = 355690042511429L, Pids = "[0],[355690042499141],[355690042511429],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 355690923847749L, Application = "warejob", Code = "BindEntrance", Component = "main/BindEntrance/index", Icon = "logout", IsDeleted = false, Name = "组盘入库", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/BindEntrance", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 355691450822725L, Application = "warejob", Code = "ExWarehouse", Component = "main/ExWarehouse/index", Icon = "login", IsDeleted = false, Name = "出库管理", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/ExWarehouse", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 355691891650629L, Application = "warejob", Code = "WmsTask", Component = "main/WmsTask/index", Icon = "hourglass", IsDeleted = false, Name = "任务管理", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/WmsTask", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 355692253458501L, Application = "warecount", Code = "LocationView", Component = "main/LocationView/index", Icon = "hdd", IsDeleted = false, Name = "库位视图", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/LocationView", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 355692487622725L, Application = "warecount", Code = "View_AccessDetails", Component = "main/View_AccessDetails/index", Icon = "laptop", IsDeleted = false, Name = "出入库记录", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/View_AccessDetails", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }); }); modelBuilder.Entity("iWare.Wms.Core.SysNotice", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("CancelTime") .HasColumnType("datetimeoffset") .HasComment("撤回时间"); b.Property("Content") .IsRequired() .HasColumnType("nvarchar(max)") .HasComment("内容"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("PublicOrgId") .HasColumnType("bigint") .HasComment("发布机构Id"); b.Property("PublicOrgName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("发布机构名称"); b.Property("PublicTime") .HasColumnType("datetimeoffset") .HasComment("发布时间"); b.Property("PublicUserId") .HasColumnType("bigint") .HasComment("发布人Id"); b.Property("PublicUserName") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("发布人姓名"); b.Property("Status") .HasColumnType("int") .HasComment("状态"); b.Property("Title") .IsRequired() .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("标题"); b.Property("Type") .HasColumnType("int") .HasComment("类型"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_notice"); b.HasComment("通知公告表"); }); modelBuilder.Entity("iWare.Wms.Core.SysNoticeUser", b => { b.Property("NoticeId") .HasColumnType("bigint") .HasComment("通知公告Id"); b.Property("UserId") .HasColumnType("bigint") .HasComment("用户Id"); b.Property("ReadStatus") .HasColumnType("int") .HasComment("状态"); b.Property("ReadTime") .HasColumnType("datetimeoffset") .HasComment("阅读时间"); b.HasKey("NoticeId", "UserId"); b.ToTable("sys_notice_user"); b.HasComment("通知公告用户表"); }); modelBuilder.Entity("iWare.Wms.Core.SysOrg", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Code") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("编码"); b.Property("Contacts") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("联系人"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .IsRequired() .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("名称"); b.Property("OrgType") .HasColumnType("nvarchar(max)"); b.Property("Pid") .HasColumnType("bigint") .HasComment("父Id"); b.Property("Pids") .HasColumnType("nvarchar(max)") .HasComment("父Ids"); b.Property("Remark") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("备注"); b.Property("Sort") .HasColumnType("int") .HasComment("排序"); b.Property("Status") .HasColumnType("int") .HasComment("状态"); b.Property("Tel") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("电话"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_org"); b.HasComment("组织机构表"); b.HasData( new { Id = 142307070910539L, Code = "wbgf", IsDeleted = false, Name = "伟本股份有限公司", Pid = 0L, Pids = "[0],", Remark = "伟本股份有限公司", Sort = 100, Status = 0 }, new { Id = 142307070910540L, Code = "wbgf_sh", IsDeleted = false, Name = "伟本股份有限公司(上海)", Pid = 142307070910539L, Pids = "[0],[142307070910539],", Remark = "伟本股份有限公司-上海", Sort = 100, Status = 0 }, new { Id = 142307070910541L, Code = "wbgf_cq", IsDeleted = false, Name = "伟本股份有限公司(重庆)", Pid = 142307070910539L, Pids = "[0],[142307070910539],", Remark = "伟本股份有限公司-重庆", Sort = 100, Status = 0 }, new { Id = 142307070910542L, Code = "wbgf_sh_yfb", IsDeleted = false, Name = "研发部", Pid = 142307070910540L, Pids = "[0],[142307070910539],[142307070910540],", Remark = "", Sort = 100, Status = 0 }, new { Id = 142307070910543L, Code = "wbgf_sh_qhb", IsDeleted = false, Name = "企划部", Pid = 142307070910540L, Pids = "[0],[142307070910539],[142307070910540],", Remark = "", Sort = 100, Status = 0 }, new { Id = 142307070910544L, Code = "wbgf_cq_scb", IsDeleted = false, Name = "市场部", Pid = 142307070910541L, Pids = "[0],[142307070910539],[142307070910541],", Remark = "", Sort = 100, Status = 0 }, new { Id = 142307070910545L, Code = "wbgf_cq_cwb", IsDeleted = false, Name = "财务部", Pid = 142307070910541L, Pids = "[0],[142307070910539],[142307070910541],", Remark = "", Sort = 100, Status = 0 }, new { Id = 142307070910546L, Code = "wbgf_cq_scb", IsDeleted = false, Name = "市场部二部", Pid = 142307070910544L, Pids = "[0],[142307070910539],[142307070910541],[142307070910544],", Remark = "", Sort = 100, Status = 0 }); }); modelBuilder.Entity("iWare.Wms.Core.SysPos", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Code") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("编码"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .IsRequired() .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("名称"); b.Property("Remark") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("备注"); b.Property("Sort") .HasColumnType("int") .HasComment("排序"); b.Property("Status") .HasColumnType("int") .HasComment("状态"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_pos"); b.HasComment("职位表"); b.HasData( new { Id = 142307070910547L, Code = "zjl", IsDeleted = false, Name = "总经理", Remark = "总经理", Sort = 100, Status = 0 }, new { Id = 142307070910548L, Code = "fzjl", IsDeleted = false, Name = "副总经理", Remark = "副总经理", Sort = 101, Status = 0 }, new { Id = 142307070910549L, Code = "bmjl", IsDeleted = false, Name = "部门经理", Remark = "部门经理", Sort = 102, Status = 0 }, new { Id = 142307070910550L, Code = "gzry", IsDeleted = false, Name = "工作人员", Remark = "工作人员", Sort = 103, Status = 0 }); }); modelBuilder.Entity("iWare.Wms.Core.SysRole", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Code") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("编码"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("DataScopeType") .HasColumnType("int") .HasComment("数据范围类型"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .IsRequired() .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("名称"); b.Property("Remark") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("备注"); b.Property("RoleType") .HasColumnType("int") .HasComment("角色类型-集团角色_0、加盟商角色_1、门店角色_2"); b.Property("Sort") .HasColumnType("int") .HasComment("排序"); b.Property("Status") .HasColumnType("int") .HasComment("状态"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_role"); b.HasComment("角色表"); b.HasData( new { Id = 142307070910554L, Code = "sys_manager_role", DataScopeType = 1, IsDeleted = false, Name = "系统管理员", Remark = "系统管理员", RoleType = 0, Sort = 100, Status = 0 }, new { Id = 356094617575493L, Code = "admin", DataScopeType = 1, IsDeleted = false, Name = "管理员", Remark = "", RoleType = 0, Sort = 100, Status = 0 }, new { Id = 358509609758789L, Code = "ware", DataScopeType = 1, IsDeleted = false, Name = "仓库用户", Remark = "", RoleType = 0, Sort = 100, Status = 0 }, new { Id = 358536344862789L, Code = "iWare", DataScopeType = 5, IsDeleted = false, Name = "研发用户", Remark = "", RoleType = 0, Sort = 100, Status = 0 }); }); modelBuilder.Entity("iWare.Wms.Core.SysRoleDataScope", b => { b.Property("SysRoleId") .HasColumnType("bigint") .HasComment("角色Id"); b.Property("SysOrgId") .HasColumnType("bigint") .HasComment("机构Id"); b.HasKey("SysRoleId", "SysOrgId"); b.HasIndex("SysOrgId"); b.ToTable("sys_role_data_scope"); b.HasComment("角色数据范围表"); }); modelBuilder.Entity("iWare.Wms.Core.SysRoleMenu", b => { b.Property("SysRoleId") .HasColumnType("bigint") .HasComment("角色Id"); b.Property("SysMenuId") .HasColumnType("bigint") .HasComment("菜单Id"); b.HasKey("SysRoleId", "SysMenuId"); b.HasIndex("SysMenuId"); b.ToTable("sys_role_menu"); b.HasComment("角色菜单表"); }); modelBuilder.Entity("iWare.Wms.Core.SysTimer", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("Cron") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("Cron表达式"); b.Property("DoOnce") .HasColumnType("bit") .HasComment("只执行一次"); b.Property("ExecuteType") .HasColumnType("int") .HasComment("执行类型"); b.Property("Headers") .HasColumnType("nvarchar(max)") .HasComment("Headers"); b.Property("Interval") .HasColumnType("int") .HasComment("间隔时间"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("JobName") .IsRequired() .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("任务名称"); b.Property("Remark") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("备注"); b.Property("RequestParameters") .HasColumnType("nvarchar(max)") .HasComment("请求参数"); b.Property("RequestType") .HasColumnType("int") .HasComment("请求类型"); b.Property("RequestUrl") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .HasComment("请求url"); b.Property("StartNow") .HasColumnType("bit") .HasComment("立即执行"); b.Property("TimerType") .HasColumnType("int") .HasComment("定时器类型"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_timer"); b.HasComment("定时任务表"); b.HasData( new { Id = 142307070910556L, DoOnce = false, ExecuteType = 1, Interval = 5, IsDeleted = false, JobName = "百度api", Remark = "接口API", RequestType = 2, RequestUrl = "https://www.baidu.com", StartNow = false, TimerType = 0 }); }); modelBuilder.Entity("iWare.Wms.Core.SysUser", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Account") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("账号"); b.Property("AdminType") .HasColumnType("int") .HasComment("管理员类型-超级管理员_1、管理员_2、普通账号_3"); b.Property("Avatar") .HasColumnType("nvarchar(max)") .HasComment("头像"); b.Property("Birthday") .HasColumnType("datetimeoffset") .HasComment("生日"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("Email") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("邮箱"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("LastLoginIp") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("最后登录IP"); b.Property("LastLoginTime") .HasColumnType("datetimeoffset") .HasComment("最后登录时间"); b.Property("Name") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("姓名"); b.Property("NickName") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("昵称"); b.Property("Password") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("密码"); b.Property("Phone") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("手机"); b.Property("Sex") .HasColumnType("int") .HasComment("性别-男_1、女_2"); b.Property("Status") .HasColumnType("int") .HasComment("状态-正常_0、停用_1、删除_2"); b.Property("Tel") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("电话"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("sys_user"); b.HasComment("用户表"); b.HasData( new { Id = 142307070910551L, Account = "superAdmin", AdminType = 1, Birthday = new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), IsDeleted = false, Name = "超级管理员", NickName = "superAdmin", Password = "e10adc3949ba59abbe56e057f20f883e", Phone = "18020030720", Sex = 1, Status = 0 }, new { Id = 142307070910552L, Account = "admin", AdminType = 2, Birthday = new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), IsDeleted = false, Name = "系统管理员", NickName = "admin", Password = "e10adc3949ba59abbe56e057f20f883e", Phone = "18020030720", Sex = 1, Status = 0 }, new { Id = 358533464608837L, Account = "warehouse", AdminType = 3, Birthday = new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), IsDeleted = false, Name = "仓库用户", NickName = "warehouse", Password = "e10adc3949ba59abbe56e057f20f883e", Phone = "13869156666", Sex = 1, Status = 0 }, new { Id = 358536045723717L, Account = "admin1", AdminType = 3, Birthday = new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), IsDeleted = false, Name = "研发部", NickName = "admin1", Password = "f379eaf3c831b04de153469d1bec345e", Phone = "13869156666", Sex = 1, Status = 0 }); }); modelBuilder.Entity("iWare.Wms.Core.SysUserDataScope", b => { b.Property("SysUserId") .HasColumnType("bigint") .HasComment("用户Id"); b.Property("SysOrgId") .HasColumnType("bigint") .HasComment("机构Id"); b.HasKey("SysUserId", "SysOrgId"); b.HasIndex("SysOrgId"); b.ToTable("sys_user_data_scope"); b.HasComment("用户数据范围表"); b.HasData( new { SysUserId = 142307070910551L, SysOrgId = 142307070910540L }); }); modelBuilder.Entity("iWare.Wms.Core.SysUserRole", b => { b.Property("SysUserId") .HasColumnType("bigint") .HasComment("用户Id"); b.Property("SysRoleId") .HasColumnType("bigint") .HasComment("角色Id"); b.HasKey("SysUserId", "SysRoleId"); b.HasIndex("SysRoleId"); b.ToTable("sys_user_role"); b.HasComment("用户角色表"); b.HasData( new { SysUserId = 142307070910552L, SysRoleId = 142307070910554L }); }); modelBuilder.Entity("iWare.Wms.Core.v_AccessDetails", b => { b.Property("BindQuantity") .HasColumnType("decimal(18,2)"); b.Property("BindStatus") .HasColumnType("int"); b.Property("ContainerCode") .HasColumnType("nvarchar(max)"); b.Property("ContainerId") .HasColumnType("bigint"); b.Property("Id") .HasColumnType("bigint"); b.Property("MaterialBatch") .HasColumnType("nvarchar(max)"); b.Property("MaterialId") .HasColumnType("bigint"); b.Property("MaterialName") .HasColumnType("nvarchar(max)"); b.Property("MaterialNo") .HasColumnType("nvarchar(max)"); b.Property("MaterialSpec") .HasColumnType("nvarchar(max)"); b.Property("SourcePlace") .HasColumnType("nvarchar(max)"); b.Property("TaskLevel") .HasColumnType("int"); b.Property("TaskModel") .HasColumnType("int"); b.Property("TaskNo") .HasColumnType("nvarchar(max)"); b.Property("TaskStatus") .HasColumnType("int"); b.Property("TaskType") .HasColumnType("int"); b.Property("ToPlace") .HasColumnType("nvarchar(max)"); b.ToView("view_AccessDetails"); }); modelBuilder.Entity("iWare.Wms.Core.WmsArea", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AreaDesc") .HasMaxLength(250) .HasColumnType("nvarchar(250)") .HasComment("描述"); b.Property("AreaName") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("名称"); b.Property("AreaStatus") .HasColumnType("int") .HasComment("状态"); b.Property("AreaType") .HasColumnType("int") .HasComment("分类"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("wms_area"); b.HasComment("库区"); b.HasData( new { Id = 355701739634757L, AreaDesc = "", AreaName = "A区", AreaStatus = 0, AreaType = 2, IsDeleted = false }, new { Id = 358851237277765L, AreaDesc = "", AreaName = "B区", AreaStatus = 0, AreaType = 1, IsDeleted = false }, new { Id = 358851309400133L, AreaDesc = "", AreaName = "C区", AreaStatus = 0, AreaType = 3, IsDeleted = false }); }); modelBuilder.Entity("iWare.Wms.Core.WmsContainer", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("ContainerCode") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("编号"); b.Property("ContainerStatus") .HasColumnType("int") .HasComment("托盘状态"); b.Property("ContainerType") .HasColumnType("int") .HasComment("类型"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("LimitHeight") .HasColumnType("decimal(18,2)") .HasComment("限高"); b.Property("LimitLength") .HasColumnType("decimal(18,2)") .HasComment("限长"); b.Property("LimitWidth") .HasColumnType("decimal(18,2)") .HasComment("限宽"); b.Property("MaxWeight") .HasColumnType("decimal(18,2)") .HasComment("载重上限"); b.Property("ParentContainerId") .HasColumnType("bigint") .HasComment("父托盘ID"); b.Property("SpecHeight") .HasColumnType("decimal(18,2)") .HasComment("高度"); b.Property("SpecLength") .HasColumnType("decimal(18,2)") .HasComment("长度"); b.Property("SpecWidth") .HasColumnType("decimal(18,2)") .HasComment("宽度"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("wms_container"); b.HasComment("托盘信息"); b.HasData( new { Id = 358852634767429L, ContainerCode = "TM00001", ContainerStatus = 1, ContainerType = 3, IsDeleted = false, LimitHeight = 1m, LimitLength = 1m, LimitWidth = 1m, MaxWeight = 1m, ParentContainerId = 0L, SpecHeight = 1m, SpecLength = 1m, SpecWidth = 1m }, new { Id = 358852767887429L, ContainerCode = "TM00002", ContainerStatus = 2, ContainerType = 3, IsDeleted = false, LimitHeight = 1m, LimitLength = 1m, LimitWidth = 1m, MaxWeight = 1m, ParentContainerId = 0L, SpecHeight = 1m, SpecLength = 1m, SpecWidth = 1m }, new { Id = 358852831047749L, ContainerCode = "TM00003", ContainerStatus = 3, ContainerType = 1, IsDeleted = false, LimitHeight = 1m, LimitLength = 1m, LimitWidth = 1m, MaxWeight = 1m, ParentContainerId = 0L, SpecHeight = 1m, SpecLength = 1m, SpecWidth = 1m }, new { Id = 358853016055877L, ContainerCode = "TM00004", ContainerStatus = 3, ContainerType = 1, IsDeleted = false, LimitHeight = 1m, LimitLength = 1m, LimitWidth = 1m, MaxWeight = 1m, ParentContainerId = 0L, SpecHeight = 1m, SpecLength = 1m, SpecWidth = 1m }, new { Id = 358853070798917L, ContainerCode = "TM00005", ContainerStatus = 3, ContainerType = 2, IsDeleted = false, LimitHeight = 1m, LimitLength = 1m, LimitWidth = 1m, MaxWeight = 1m, ParentContainerId = 0L, SpecHeight = 1m, SpecLength = 1m, SpecWidth = 1m }, new { Id = 358853146058821L, ContainerCode = "TM00006", ContainerStatus = 1, ContainerType = 2, IsDeleted = false, LimitHeight = 1m, LimitLength = 1m, LimitWidth = 1m, MaxWeight = 1m, ParentContainerId = 0L, SpecHeight = 1m, SpecLength = 1m, SpecWidth = 1m }, new { Id = 358853199671365L, ContainerCode = "TM00007", ContainerStatus = 1, ContainerType = 0, IsDeleted = false, LimitHeight = 1m, LimitLength = 1m, LimitWidth = 1m, MaxWeight = 1m, ParentContainerId = 0L, SpecHeight = 1m, SpecLength = 1m, SpecWidth = 1m }, new { Id = 358853255102533L, ContainerCode = "TM00008", ContainerStatus = 1, ContainerType = 3, IsDeleted = false, LimitHeight = 1m, LimitLength = 1m, LimitWidth = 1m, MaxWeight = 1m, ParentContainerId = 0L, SpecHeight = 1m, SpecLength = 1m, SpecWidth = 1m }); }); modelBuilder.Entity("iWare.Wms.Core.WmsContainerPlace", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("ContainerCode") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库位编码"); b.Property("ContainerId") .HasColumnType("bigint") .HasComment("托盘ID"); b.Property("ContainerPlaceStatus") .HasColumnType("int") .HasComment("状态"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("PlaceCode") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库位编码"); b.Property("PlaceId") .HasColumnType("bigint") .HasComment("库位ID"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.Property("WmsContainerId") .HasColumnType("bigint"); b.Property("WmsPlaceId") .HasColumnType("bigint"); b.HasKey("Id"); b.HasIndex("WmsContainerId"); b.HasIndex("WmsPlaceId"); b.ToTable("wms_containerplace"); b.HasComment("托盘库位关系表"); b.HasData( new { Id = 358853586010181L, ContainerCode = "TM00001", ContainerId = 358852634767429L, ContainerPlaceStatus = 2, IsDeleted = false, PlaceCode = "1-1-1-1-1", PlaceId = 358852152045637L }, new { Id = 358856088039493L, ContainerCode = "TM00001", ContainerId = 358852634767429L, ContainerPlaceStatus = 2, IsDeleted = false, PlaceCode = "1-1-1-2-1", PlaceId = 358852152119365L }, new { Id = 358856888660037L, ContainerCode = "TM00002", ContainerId = 358852767887429L, ContainerPlaceStatus = 2, IsDeleted = false, PlaceCode = "1-1-1-1-1", PlaceId = 358852152045637L }, new { Id = 358857243414597L, ContainerCode = "TM00003", ContainerId = 358852831047749L, ContainerPlaceStatus = 0, IsDeleted = false, PlaceCode = "1-1-1-5-1", PlaceId = 358852152156229L }, new { Id = 358857693601867L, ContainerCode = "TM00004", ContainerId = 358853016055877L, ContainerPlaceStatus = 0, IsDeleted = false, PlaceCode = "1-1-1-1-1", PlaceId = 358852152045637L }, new { Id = 358858262188101L, ContainerCode = "TM00005", ContainerId = 358853070798917L, ContainerPlaceStatus = 0, IsDeleted = false, PlaceCode = "1-1-1-4-1", PlaceId = 358852152143941L }); }); modelBuilder.Entity("iWare.Wms.Core.WmsMaterial", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("Description") .HasMaxLength(500) .HasColumnType("nvarchar(500)") .HasComment("描述"); b.Property("ErpNo") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("Erp单号"); b.Property("GraphNo") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("图号"); b.Property("Height") .HasColumnType("decimal(18,2)") .HasComment("高(mm)"); b.Property("InspectionMethod") .HasColumnType("int") .HasComment("检验方式"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Keymaterials") .HasColumnType("int") .HasComment("是否关键物料"); b.Property("Length") .HasColumnType("decimal(18,2)") .HasComment("长(mm)"); b.Property("MaterialBatch") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料批次"); b.Property("MaterialName") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料名称"); b.Property("MaterialNo") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料编号"); b.Property("MaterialSpec") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料规格"); b.Property("MaterialType") .HasColumnType("int") .HasComment("物料类别"); b.Property("MaxImumqty") .HasColumnType("decimal(18,2)") .HasComment("最大存量"); b.Property("MaxstorageAge") .HasColumnType("decimal(18,2)") .HasComment("最大库龄"); b.Property("MinstorageAge") .HasColumnType("decimal(18,2)") .HasComment("最小库龄"); b.Property("Qccategory") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("品管类别"); b.Property("Remark") .HasColumnType("nvarchar(max)") .HasComment("备注"); b.Property("Safeqty") .HasColumnType("decimal(18,2)") .HasComment("安全存量"); b.Property("UnitNo") .HasColumnType("int") .HasComment("单位编号"); b.Property("UnitType") .HasColumnType("int") .HasComment("单位类别"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.Property("Warranty") .HasColumnType("decimal(18,2)") .HasComment("保质期"); b.Property("Width") .HasColumnType("decimal(18,2)") .HasComment("宽(mm)"); b.HasKey("Id"); b.ToTable("wms_material"); b.HasComment("物料信息"); b.HasData( new { Id = 355707111780421L, InspectionMethod = 1, IsDeleted = false, Keymaterials = 0, MaterialBatch = "3570100022", MaterialName = "LAPP动力电缆", MaterialNo = "3570100022", MaterialSpec = "OLFLEX CLASSIC 110 5G6", MaterialType = 1, MaxImumqty = 100m, MaxstorageAge = 1m, MinstorageAge = 1m, Safeqty = 100m, UnitNo = 1, UnitType = 1, Warranty = 100m }, new { Id = 358845906632773L, InspectionMethod = 1, IsDeleted = false, Keymaterials = 0, MaterialBatch = "3070400120", MaterialName = "气动拧松枪", MaterialNo = "3070400120", MaterialSpec = "16SUP PRO", MaterialType = 1, MaxImumqty = 100m, MaxstorageAge = 1m, MinstorageAge = 1m, Safeqty = 100m, UnitNo = 1, UnitType = 1, Warranty = 10m }, new { Id = 358847125188677L, InspectionMethod = 1, IsDeleted = false, Keymaterials = 0, MaterialBatch = "3110800160", MaterialName = "定位销", MaterialNo = "3110800160", MaterialSpec = "YDL31-D8-P12-L18-B8-X", MaterialType = 2, MaxImumqty = 1m, MaxstorageAge = 1m, MinstorageAge = 1m, Safeqty = 100m, UnitNo = 1, UnitType = 1, Warranty = 1m }, new { Id = 358847583273029L, InspectionMethod = 2, IsDeleted = false, Keymaterials = 0, MaterialBatch = "3090200565", MaterialName = "防爆传感器", MaterialNo = "3090200565", MaterialSpec = "BND-JA12GT4-24PH-25M-TL", MaterialType = 3, MaxImumqty = 1m, MaxstorageAge = 1m, MinstorageAge = 1m, Safeqty = 1m, UnitNo = 2, UnitType = 2, Warranty = 1m }, new { Id = 358847917588549L, InspectionMethod = 2, IsDeleted = false, Keymaterials = 1, MaterialBatch = "2200074125", MaterialName = "套筒收纳盒安装板", MaterialNo = "2200074125", MaterialSpec = "4301015-40-110-04-01", MaterialType = 3, MaxImumqty = 1m, MaxstorageAge = 1m, MinstorageAge = 1m, Safeqty = 100m, UnitNo = 1, UnitType = 1, Warranty = 1m }, new { Id = 358848226168901L, InspectionMethod = 1, IsDeleted = false, Keymaterials = 0, MaterialBatch = "2200074102", MaterialName = "传感器安装支架", MaterialNo = "2200074102", MaterialSpec = "40488-020-D086", MaterialType = 2, MaxImumqty = 1m, MaxstorageAge = 1m, MinstorageAge = 1m, Safeqty = 100m, UnitNo = 2, UnitType = 2, Warranty = 100m }, new { Id = 358851158249541L, InspectionMethod = 2, IsDeleted = false, Keymaterials = 1, MaterialBatch = "1222202451", MaterialName = "电机", MaterialNo = "1222202451", MaterialSpec = "LA21038-020.01-01.10", MaterialType = 3, MaxImumqty = 100m, MaxstorageAge = 1m, MinstorageAge = 1m, Safeqty = 100m, UnitNo = 2, UnitType = 2, Warranty = 1m }); }); modelBuilder.Entity("iWare.Wms.Core.WmsMaterialContainer", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("BindQuantity") .HasColumnType("decimal(18,2)") .HasComment("组盘数量"); b.Property("BindStatus") .HasColumnType("int") .HasComment("组盘状态"); b.Property("ContainerCode") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("托盘编码"); b.Property("ContainerId") .HasColumnType("bigint") .HasComment("托盘ID"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("MaterialBatch") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料批次"); b.Property("MaterialId") .HasColumnType("bigint") .HasComment("物料ID"); b.Property("MaterialName") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料名称"); b.Property("MaterialNo") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料编号"); b.Property("MaterialSpec") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料规格"); b.Property("OrderNo") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("单号"); b.Property("SampleQty") .HasColumnType("decimal(18,2)") .HasComment("抽检数量"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.HasIndex("ContainerId"); b.HasIndex("MaterialId"); b.ToTable("wms_materialcontainer"); b.HasComment("物料托盘关系表"); b.HasData( new { Id = 358856845353031L, BindQuantity = 100m, BindStatus = 2, ContainerCode = "TM00002", ContainerId = 358852767887429L, IsDeleted = false, MaterialBatch = "3070400120", MaterialId = 358845906632773L, MaterialName = "气动拧松枪", MaterialNo = "3070400120", MaterialSpec = "16SUP PRO", OrderNo = "358856845353029", SampleQty = 0m }, new { Id = 358856980582469L, BindQuantity = 100m, BindStatus = 1, ContainerCode = "TM00002", ContainerId = 358852767887429L, IsDeleted = false, MaterialBatch = "3070400120", MaterialId = 358845906632773L, MaterialName = "气动拧松枪", MaterialNo = "3070400120", MaterialSpec = "16SUP PRO", OrderNo = "358856980553798", SampleQty = 0m }, new { Id = 358857030975557L, BindQuantity = 100m, BindStatus = 0, ContainerCode = "TM00002", ContainerId = 358852767887429L, IsDeleted = false, MaterialBatch = "3070400120", MaterialId = 358845906632773L, MaterialName = "气动拧松枪", MaterialNo = "3070400120", MaterialSpec = "16SUP PRO", OrderNo = "358857030971461", SampleQty = 0m }, new { Id = 358857618075719L, BindQuantity = 100m, BindStatus = 0, ContainerCode = "TM00004", ContainerId = 358853016055877L, IsDeleted = false, MaterialBatch = "3070400120", MaterialId = 358845906632773L, MaterialName = "气动拧松枪", MaterialNo = "3070400120", MaterialSpec = "16SUP PRO", OrderNo = "358857618075717", SampleQty = 0m }, new { Id = 358857618153542L, BindQuantity = 100m, BindStatus = 0, ContainerCode = "TM00004", ContainerId = 358853016055877L, IsDeleted = false, MaterialBatch = "3110800160", MaterialId = 358847125188677L, MaterialName = "定位销", MaterialNo = "3110800160", MaterialSpec = "YDL31-D8-P12-L18-B8-X", OrderNo = "358857618075717", SampleQty = 0m }, new { Id = 358858261872714L, BindQuantity = 10m, BindStatus = 0, ContainerCode = "TM00005", ContainerId = 358853070798917L, IsDeleted = false, MaterialBatch = "1222202451", MaterialId = 358851158249541L, MaterialName = "电机", MaterialNo = "1222202451", MaterialSpec = "LA21038-020.01-01.10", OrderNo = "358858261872712", SampleQty = 0m }, new { Id = 358858262044742L, BindQuantity = 1m, BindStatus = 0, ContainerCode = "TM00005", ContainerId = 358853070798917L, IsDeleted = false, MaterialBatch = "2200074102", MaterialId = 358848226168901L, MaterialName = "传感器安装支架", MaterialNo = "2200074102", MaterialSpec = "40488-020-D086", OrderNo = "358858261872712", SampleQty = 0m }, new { Id = 358858262089798L, BindQuantity = 10m, BindStatus = 0, ContainerCode = "TM00005", ContainerId = 358853070798917L, IsDeleted = false, MaterialBatch = "2200074125", MaterialId = 358847917588549L, MaterialName = "套筒收纳盒安装板", MaterialNo = "2200074125", MaterialSpec = "4301015-40-110-04-01", OrderNo = "358858261872712", SampleQty = 0m }); }); modelBuilder.Entity("iWare.Wms.Core.WmsMaterialStock", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AreaId") .HasColumnType("bigint") .HasComment("库区ID"); b.Property("ContainerCode") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("托盘编码"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("InspectionMethod") .HasColumnType("int") .HasComment("检验方式"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("MaterialBatch") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料批次"); b.Property("MaterialName") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料名称"); b.Property("MaterialNo") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料编号"); b.Property("MaterialSpec") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料规格"); b.Property("MaterialType") .HasColumnType("int") .HasComment("物料类别"); b.Property("PlaceCode") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库位编码"); b.Property("StockNumber") .HasColumnType("decimal(18,2)") .HasComment("库存数"); b.Property("UnitNo") .HasColumnType("int") .HasComment("单位编号"); b.Property("UnitType") .HasColumnType("int") .HasComment("单位类别"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("wms_materialstock"); b.HasComment("库存表"); b.HasData( new { Id = 358853586690117L, AreaId = 0L, ContainerCode = "TM00001", InspectionMethod = 1, IsDeleted = false, MaterialBatch = "N/A", MaterialName = "N/A", MaterialNo = "N/A", MaterialSpec = "N/A", MaterialType = 4, PlaceCode = "N/A", StockNumber = 0m, UnitNo = 2, UnitType = 2 }, new { Id = 358856888787013L, AreaId = 0L, ContainerCode = "TM00002", InspectionMethod = 1, IsDeleted = false, MaterialBatch = "3070400120", MaterialName = "气动拧松枪", MaterialNo = "3070400120", MaterialSpec = "16SUP PRO", MaterialType = 1, PlaceCode = "N/A", StockNumber = 0m, UnitNo = 1, UnitType = 1 }, new { Id = 358857243504709L, AreaId = 355701739634757L, ContainerCode = "TM00003", InspectionMethod = 1, IsDeleted = false, MaterialBatch = "N/A", MaterialName = "N/A", MaterialNo = "N/A", MaterialSpec = "N/A", MaterialType = 4, PlaceCode = "1-1-1-5-1", StockNumber = 1m, UnitNo = 2, UnitType = 2 }, new { Id = 358857693638725L, AreaId = 355701739634757L, ContainerCode = "TM00004", InspectionMethod = 1, IsDeleted = false, MaterialBatch = "3070400120", MaterialName = "气动拧松枪", MaterialNo = "3070400120", MaterialSpec = "16SUP PRO", MaterialType = 1, PlaceCode = "1-1-1-1-1", StockNumber = 100m, UnitNo = 1, UnitType = 1 }, new { Id = 358857693646917L, AreaId = 355701739634757L, ContainerCode = "TM00004", InspectionMethod = 1, IsDeleted = false, MaterialBatch = "3110800160", MaterialName = "定位销", MaterialNo = "3110800160", MaterialSpec = "YDL31-D8-P12-L18-B8-X", MaterialType = 2, PlaceCode = "1-1-1-1-1", StockNumber = 100m, UnitNo = 1, UnitType = 1 }, new { Id = 358858262392901L, AreaId = 355701739634757L, ContainerCode = "TM00005", InspectionMethod = 2, IsDeleted = false, MaterialBatch = "1222202451", MaterialName = "电机", MaterialNo = "1222202451", MaterialSpec = "LA21038-020.01-01.10", MaterialType = 3, PlaceCode = "1-1-1-4-1", StockNumber = 10m, UnitNo = 2, UnitType = 2 }, new { Id = 358858262401093L, AreaId = 355701739634757L, ContainerCode = "TM00005", InspectionMethod = 1, IsDeleted = false, MaterialBatch = "2200074102", MaterialName = "传感器安装支架", MaterialNo = "2200074102", MaterialSpec = "40488-020-D086", MaterialType = 2, PlaceCode = "1-1-1-4-1", StockNumber = 1m, UnitNo = 2, UnitType = 2 }, new { Id = 358858262409285L, AreaId = 355701739634757L, ContainerCode = "TM00005", InspectionMethod = 2, IsDeleted = false, MaterialBatch = "2200074125", MaterialName = "套筒收纳盒安装板", MaterialNo = "2200074125", MaterialSpec = "4301015-40-110-04-01", MaterialType = 3, PlaceCode = "1-1-1-4-1", StockNumber = 10m, UnitNo = 1, UnitType = 1 }); }); modelBuilder.Entity("iWare.Wms.Core.WmsPlace", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Aisle") .HasColumnType("int") .HasComment("巷道"); b.Property("AreaId") .HasColumnType("bigint") .HasComment("所在库区"); b.Property("ColumnNo") .HasColumnType("int") .HasComment("列"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("DeepcellNo") .HasColumnType("int") .HasComment("进深号"); b.Property("EmptyContainer") .HasColumnType("int") .HasComment("是否空托"); b.Property("Height") .HasColumnType("decimal(18,2)") .HasComment("库位高度"); b.Property("HeightLevel") .HasColumnType("int") .HasComment("库位高度"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Islock") .HasColumnType("int") .HasComment("是否锁定"); b.Property("LayerNo") .HasColumnType("int") .HasComment("层"); b.Property("Length") .HasColumnType("decimal(18,2)") .HasComment("库位长度"); b.Property("Line") .HasColumnType("int") .HasComment("线号"); b.Property("MaxWeight") .HasColumnType("decimal(18,2)") .HasComment("最大承重"); b.Property("PlaceCode") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("编码"); b.Property("PlaceStatus") .HasColumnType("int") .HasComment("库位状态"); b.Property("PositionnoForSrm") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("堆垛机内部的位置"); b.Property("Priority") .HasColumnType("int") .HasComment("优先级"); b.Property("RowNo") .HasColumnType("int") .HasComment("排"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.Property("Width") .HasColumnType("decimal(18,2)") .HasComment("库位宽度"); b.Property("Xzb") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库位X坐标"); b.Property("Yzb") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库位Y坐标"); b.Property("Zzb") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库位Z坐标"); b.HasKey("Id"); b.HasIndex("AreaId"); b.ToTable("wms_place"); b.HasComment("库位"); b.HasData( new { Id = 358852152045637L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 1, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 1, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-1-1-1", PlaceStatus = 3, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152119365L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 1, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 2, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-1-2-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152131653L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 1, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 3, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-1-3-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152143941L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 1, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 4, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-1-4-1", PlaceStatus = 3, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152156229L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 1, DeepcellNo = 1, EmptyContainer = 1, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 5, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-1-5-1", PlaceStatus = 3, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152164421L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 1, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 6, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-1-6-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152172613L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 2, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 1, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-2-1-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152180805L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 2, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 2, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-2-2-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152193093L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 2, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 3, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-2-3-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152205381L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 2, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 4, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-2-4-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152217669L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 2, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 5, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-2-5-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152229957L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 2, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 6, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-2-6-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152238149L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 3, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 1, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-3-1-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152246341L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 3, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 1, LayerNo = 2, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-3-2-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152258629L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 3, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 3, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-3-3-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152266821L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 3, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 4, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-3-4-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152283205L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 3, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 5, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-3-5-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152295493L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 3, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 6, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-3-6-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152307781L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 4, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 1, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-4-1-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152315973L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 4, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 2, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-4-2-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152328261L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 4, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 3, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-4-3-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152336453L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 4, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 4, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-4-4-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152344645L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 4, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 5, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-4-5-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152356933L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 4, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 6, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-4-6-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152365125L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 5, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 1, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-5-1-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152373317L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 5, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 2, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-5-2-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152381509L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 5, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 3, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-5-3-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152393797L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 5, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 4, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-5-4-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152401989L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 5, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 5, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-5-5-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152410181L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 5, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 6, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-5-6-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152422469L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 6, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 1, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-6-1-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152430661L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 6, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 2, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-6-2-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152442949L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 6, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 3, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-6-3-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152451141L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 6, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 4, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-6-4-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152463429L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 6, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 5, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-6-5-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152471621L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 6, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 6, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-6-6-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152479813L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 7, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 1, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-7-1-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152496197L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 7, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 2, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-7-2-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152504389L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 7, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 3, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-7-3-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152516677L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 7, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 4, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-7-4-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152524869L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 7, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 5, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-7-5-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152610885L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 7, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 6, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-7-6-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152623173L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 8, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 1, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-8-1-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152631365L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 8, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 2, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-8-2-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152639557L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 8, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 3, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-8-3-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152651845L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 8, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 4, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-8-4-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152660037L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 8, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 5, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-8-5-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }, new { Id = 358852152668229L, Aisle = 1, AreaId = 355701739634757L, ColumnNo = 8, DeepcellNo = 1, EmptyContainer = 0, Height = 1.8m, HeightLevel = 1, IsDeleted = false, Islock = 0, LayerNo = 6, Length = 1.2m, Line = 0, MaxWeight = 2.8m, PlaceCode = "1-1-8-6-1", PlaceStatus = 1, Priority = 0, RowNo = 1, Width = 1.5m }); }); modelBuilder.Entity("iWare.Wms.Core.WmsTask", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Aisle") .HasColumnType("int") .HasComment("巷道"); b.Property("AreaName") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库区名称"); b.Property("ContainerCode") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("托盘编号"); b.Property("CreatedTime") .HasColumnType("datetimeoffset") .HasComment("创建时间"); b.Property("CreatedUserId") .HasColumnType("bigint") .HasComment("创建者Id"); b.Property("CreatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("创建者名称"); b.Property("DodeviceId") .HasColumnType("int") .HasComment("任务执行堆垛机ID"); b.Property("DodevicenodeId") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("设备执行节点ID"); b.Property("Dodevicetype") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("设备类型"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("OrderNo") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("组盘记录ID"); b.Property("SendTimes") .HasColumnType("int") .HasComment("发送次数"); b.Property("SourcePlace") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("起始库位"); b.Property("TaskLevel") .HasColumnType("int") .HasComment("任务级别"); b.Property("TaskModel") .HasColumnType("int") .HasComment("任务方式"); b.Property("TaskNo") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("任务号"); b.Property("TaskStatus") .HasColumnType("int") .HasComment("任务状态"); b.Property("TaskType") .HasColumnType("int") .HasComment("任务类型"); b.Property("ToPlace") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("目标库位"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset") .HasComment("更新时间"); b.Property("UpdatedUserId") .HasColumnType("bigint") .HasComment("修改者Id"); b.Property("UpdatedUserName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("修改者名称"); b.HasKey("Id"); b.ToTable("wms_task"); b.HasComment("任务管理"); b.HasData( new { Id = 358853585506373L, Aisle = 1, AreaName = "A区", ContainerCode = "TM00001", DodeviceId = 0, IsDeleted = false, OrderNo = "N/A", SendTimes = 0, SourcePlace = "N/A", TaskLevel = 1, TaskModel = 1, TaskNo = "358853585506374", TaskStatus = 3, TaskType = 1, ToPlace = "1-1-1-1-1" }, new { Id = 358856088019013L, Aisle = 1, AreaName = "A区", ContainerCode = "TM00001", DodeviceId = 0, IsDeleted = false, OrderNo = "N/A", SendTimes = 0, SourcePlace = "1-1-1-1-1", TaskLevel = 1, TaskModel = 1, TaskNo = "358856088019014", TaskStatus = 3, TaskType = 3, ToPlace = "1-1-1-2-1" }, new { Id = 358856349995077L, Aisle = 1, AreaName = "A区", ContainerCode = "TM00001", DodeviceId = 0, IsDeleted = false, OrderNo = "N/A", SendTimes = 0, SourcePlace = "1-1-1-2-1", TaskLevel = 1, TaskModel = 1, TaskNo = "358856349995078", TaskStatus = 3, TaskType = 2, ToPlace = "N/A" }, new { Id = 358856845733957L, Aisle = 1, AreaName = "A区", ContainerCode = "TM00002", DodeviceId = 0, IsDeleted = false, OrderNo = "358856845353029", SendTimes = 0, SourcePlace = "100", TaskLevel = 1, TaskModel = 2, TaskNo = "358856845733958", TaskStatus = 3, TaskType = 1, ToPlace = "1-1-1-1-1" }, new { Id = 358856980553799L, Aisle = 1, AreaName = "A区", ContainerCode = "TM00002", DodeviceId = 0, IsDeleted = false, OrderNo = "358856980553798", SendTimes = 0, SourcePlace = "1-1-1-1-1", TaskLevel = 1, TaskModel = 2, TaskNo = "358856980553800", TaskStatus = 3, TaskType = 2, ToPlace = "101" }, new { Id = 358857243410501L, Aisle = 1, AreaName = "A区", ContainerCode = "TM00003", DodeviceId = 0, IsDeleted = false, OrderNo = "N/A", SendTimes = 0, SourcePlace = "N/A", TaskLevel = 1, TaskModel = 1, TaskNo = "358857243410502", TaskStatus = 3, TaskType = 1, ToPlace = "1-1-1-5-1" }, new { Id = 358857618247749L, Aisle = 1, AreaName = "A区", ContainerCode = "TM00004", DodeviceId = 0, IsDeleted = false, OrderNo = "358857618075717", SendTimes = 0, SourcePlace = "101", TaskLevel = 1, TaskModel = 2, TaskNo = "358857618247750", TaskStatus = 3, TaskType = 1, ToPlace = "1-1-1-1-1" }, new { Id = 358858262179909L, Aisle = 1, AreaName = "A区", ContainerCode = "TM00005", DodeviceId = 0, IsDeleted = false, OrderNo = "358858261872712", SendTimes = 0, SourcePlace = "N/A", TaskLevel = 1, TaskModel = 1, TaskNo = "358858262179910", TaskStatus = 3, TaskType = 1, ToPlace = "1-1-1-4-1" }); }); modelBuilder.Entity("Furion.Extras.iWare.Wms.Entity.SysLowCodeDataBase", b => { b.HasOne("Furion.Extras.iWare.Wms.Entity.SysLowCode", "SysLowCode") .WithMany("Databases") .HasForeignKey("SysLowCodeId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysLowCode"); }); modelBuilder.Entity("iWare.Wms.Core.SysDictData", b => { b.HasOne("iWare.Wms.Core.SysDictType", "SysDictType") .WithMany("SysDictDatas") .HasForeignKey("TypeId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysDictType"); }); modelBuilder.Entity("iWare.Wms.Core.SysEmpExtOrgPos", b => { b.HasOne("iWare.Wms.Core.SysEmp", "SysEmp") .WithMany() .HasForeignKey("SysEmpId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("iWare.Wms.Core.SysOrg", "SysOrg") .WithMany() .HasForeignKey("SysOrgId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("iWare.Wms.Core.SysPos", "SysPos") .WithMany() .HasForeignKey("SysPosId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysEmp"); b.Navigation("SysOrg"); b.Navigation("SysPos"); }); modelBuilder.Entity("iWare.Wms.Core.SysEmpPos", b => { b.HasOne("iWare.Wms.Core.SysEmp", "SysEmp") .WithMany("SysEmpPos") .HasForeignKey("SysEmpId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("iWare.Wms.Core.SysPos", "SysPos") .WithMany("SysEmpPos") .HasForeignKey("SysPosId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysEmp"); b.Navigation("SysPos"); }); modelBuilder.Entity("iWare.Wms.Core.SysRoleDataScope", b => { b.HasOne("iWare.Wms.Core.SysOrg", "SysOrg") .WithMany("SysRoleDataScopes") .HasForeignKey("SysOrgId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("iWare.Wms.Core.SysRole", "SysRole") .WithMany("SysRoleDataScopes") .HasForeignKey("SysRoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysOrg"); b.Navigation("SysRole"); }); modelBuilder.Entity("iWare.Wms.Core.SysRoleMenu", b => { b.HasOne("iWare.Wms.Core.SysMenu", "SysMenu") .WithMany("SysRoleMenus") .HasForeignKey("SysMenuId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("iWare.Wms.Core.SysRole", "SysRole") .WithMany("SysRoleMenus") .HasForeignKey("SysRoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysMenu"); b.Navigation("SysRole"); }); modelBuilder.Entity("iWare.Wms.Core.SysUserDataScope", b => { b.HasOne("iWare.Wms.Core.SysOrg", "SysOrg") .WithMany("SysUserDataScopes") .HasForeignKey("SysOrgId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("iWare.Wms.Core.SysUser", "SysUser") .WithMany("SysUserDataScopes") .HasForeignKey("SysUserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysOrg"); b.Navigation("SysUser"); }); modelBuilder.Entity("iWare.Wms.Core.SysUserRole", b => { b.HasOne("iWare.Wms.Core.SysRole", "SysRole") .WithMany("SysUserRoles") .HasForeignKey("SysRoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("iWare.Wms.Core.SysUser", "SysUser") .WithMany("SysUserRoles") .HasForeignKey("SysUserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysRole"); b.Navigation("SysUser"); }); modelBuilder.Entity("iWare.Wms.Core.WmsContainerPlace", b => { b.HasOne("iWare.Wms.Core.WmsContainer", "WmsContainer") .WithMany() .HasForeignKey("WmsContainerId"); b.HasOne("iWare.Wms.Core.WmsPlace", "WmsPlace") .WithMany() .HasForeignKey("WmsPlaceId"); b.Navigation("WmsContainer"); b.Navigation("WmsPlace"); }); modelBuilder.Entity("iWare.Wms.Core.WmsMaterialContainer", b => { b.HasOne("iWare.Wms.Core.WmsContainer", "WmsContainer") .WithMany("WmsMaterialContainers") .HasForeignKey("ContainerId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("iWare.Wms.Core.WmsMaterial", "WmsMaterial") .WithMany("WmsMaterialContainers") .HasForeignKey("MaterialId"); b.Navigation("WmsContainer"); b.Navigation("WmsMaterial"); }); modelBuilder.Entity("iWare.Wms.Core.WmsPlace", b => { b.HasOne("iWare.Wms.Core.WmsArea", "WmsArea") .WithMany("WmsPlaces") .HasForeignKey("AreaId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("WmsArea"); }); modelBuilder.Entity("Furion.Extras.iWare.Wms.Entity.SysLowCode", b => { b.Navigation("Databases"); }); modelBuilder.Entity("iWare.Wms.Core.SysDictType", b => { b.Navigation("SysDictDatas"); }); modelBuilder.Entity("iWare.Wms.Core.SysEmp", b => { b.Navigation("SysEmpPos"); }); modelBuilder.Entity("iWare.Wms.Core.SysMenu", b => { b.Navigation("SysRoleMenus"); }); modelBuilder.Entity("iWare.Wms.Core.SysOrg", b => { b.Navigation("SysRoleDataScopes"); b.Navigation("SysUserDataScopes"); }); modelBuilder.Entity("iWare.Wms.Core.SysPos", b => { b.Navigation("SysEmpPos"); }); modelBuilder.Entity("iWare.Wms.Core.SysRole", b => { b.Navigation("SysRoleDataScopes"); b.Navigation("SysRoleMenus"); b.Navigation("SysUserRoles"); }); modelBuilder.Entity("iWare.Wms.Core.SysUser", b => { b.Navigation("SysUserDataScopes"); b.Navigation("SysUserRoles"); }); modelBuilder.Entity("iWare.Wms.Core.WmsArea", b => { b.Navigation("WmsPlaces"); }); modelBuilder.Entity("iWare.Wms.Core.WmsContainer", b => { b.Navigation("WmsMaterialContainers"); }); modelBuilder.Entity("iWare.Wms.Core.WmsMaterial", b => { b.Navigation("WmsMaterialContainers"); }); #pragma warning restore 612, 618 } } }