// using System; using Admin.NET.EntityFramework.Core; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; #nullable disable namespace Admin.NET.Database.Migrations.Migrations { [DbContext(typeof(DefaultDbContext))] partial class DefaultDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "6.0.9") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder, 1L, 1); modelBuilder.Entity("Admin.NET.Core.AgvTask", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AgvState") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("状态"); b.Property("ContainerCode") .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("EndName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("结束名称"); b.Property("EndPlace") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("结束位置"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Pid") .HasColumnType("bigint") .HasComment("Agv父Id"); b.Property("SourcePlaceName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("起始库位名称"); b.Property("StartName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("起始名称"); b.Property("StartPlace") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("起始位置"); b.Property("TaskNo") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("主任务号"); b.Property("TaskType") .HasMaxLength(10) .HasColumnType("nvarchar(10)") .HasComment("任务类型-入库;出库"); b.Property("TransportOrder") .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.Property("WorkShopType") .HasColumnType("int") .HasComment("所属车间"); b.HasKey("Id"); b.ToTable("les_agv_task"); b.HasComment("Agv任务表"); }); modelBuilder.Entity("Admin.NET.Core.AgvWaring", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AgvCarCode") .HasMaxLength(10) .HasColumnType("nvarchar(10)") .HasComment("agv小车编号"); b.Property("Code") .HasMaxLength(10) .HasColumnType("nvarchar(10)") .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("FaultText") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("故障内容"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("IsRead") .HasColumnType("bit") .HasComment("WCS是否可以读取"); b.Property("StartTime") .HasMaxLength(50) .HasColumnType("datetimeoffset") .HasComment("故障时间"); b.Property("TransportOrder") .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.Property("WorkShopType") .HasColumnType("int") .HasComment("所属车间"); b.Property("YesOrNot") .HasMaxLength(50) .HasColumnType("int") .HasComment("是否解决"); b.HasKey("Id"); b.ToTable("les_agv_waring"); b.HasComment("Agv报警"); }); modelBuilder.Entity("Admin.NET.Core.Entity.VAccessDetails", b => { b.Property("Batch") .HasColumnType("nvarchar(max)"); b.Property("ContainerCode") .HasColumnType("nvarchar(max)"); b.Property("CreatedTime") .HasColumnType("datetimeoffset"); b.Property("Description") .HasColumnType("nvarchar(max)"); b.Property("High") .HasColumnType("int"); b.Property("Id") .HasColumnType("bigint"); b.Property("Long") .HasColumnType("int"); b.Property("MaterialDensity") .HasColumnType("nvarchar(max)"); b.Property("MaterialNo") .HasColumnType("nvarchar(max)"); b.Property("SourcePlace") .HasColumnType("nvarchar(max)"); b.Property("TaskCreatedTime") .HasColumnType("datetimeoffset"); 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("TaskUpdatedTime") .HasColumnType("datetimeoffset"); b.Property("ToPlace") .HasColumnType("nvarchar(max)"); b.Property("UpdatedTime") .HasColumnType("datetimeoffset"); b.Property("Wide") .HasColumnType("int"); b.ToView("View_AccessDetails"); }); modelBuilder.Entity("Admin.NET.Core.Entity.WmsBase.WmsRolePdaMenu", b => { b.Property("SysRoleId") .HasColumnType("bigint") .HasComment("角色Id"); b.Property("PdaMenuId") .HasColumnType("bigint") .HasComment("菜单Id"); b.HasKey("SysRoleId", "PdaMenuId"); b.HasIndex("PdaMenuId"); b.ToTable("wms_role_pdamenu"); b.HasComment("角色菜单表"); }); modelBuilder.Entity("Admin.NET.Core.Entity.WmsBase.WmsWarehouseManage", 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(100) .HasColumnType("nvarchar(100)") .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("wms_warehouse_manage"); b.HasComment("库口表"); }); modelBuilder.Entity("Admin.NET.Core.LesDeviceWaring", 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("DeviceName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("设备名称"); b.Property("EndTime") .HasColumnType("datetimeoffset") .HasComment("结束时间"); b.Property("FaultName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("故障名称"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("RunningTime") .HasColumnType("int") .HasComment("持续时间"); b.Property("StartTime") .HasColumnType("datetimeoffset") .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("WcsId") .HasColumnType("int") .HasComment("WcsId"); b.HasKey("Id"); b.ToTable("les_devicewaring"); b.HasComment("设备报警"); }); modelBuilder.Entity("Admin.NET.Core.LesEntrance", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AreaId") .HasColumnType("bigint") .HasComment("库区Id"); b.Property("Code") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库口编码"); b.Property("CommenStatus") .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("EntranceType") .HasColumnType("int") .HasComment("库口类型"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .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.HasIndex("AreaId"); b.ToTable("les_entrance"); b.HasComment("库口表"); }); modelBuilder.Entity("Admin.NET.Core.LesPackWarehouse", 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("High") .HasColumnType("int") .HasComment("高"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("LesPackState") .HasColumnType("int") .HasComment("打包状态"); b.Property("Long") .HasColumnType("int") .HasComment("长"); b.Property("MaterialNo") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料码"); b.Property("OrderNo") .HasColumnType("nvarchar(max)") .HasComment("单据号"); b.Property("OutputEntrance") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("出库口"); b.Property("PackCode") .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.Property("Wide") .HasColumnType("int") .HasComment("宽"); b.HasKey("Id"); b.ToTable("les_packwarehouse"); b.HasComment("打包表"); }); modelBuilder.Entity("Admin.NET.Core.LesSerialRuleDetail", 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("DecimalType") .HasColumnType("int") .HasComment("进位类型"); b.Property("Description") .HasMaxLength(300) .HasColumnType("nvarchar(300)") .HasComment("说明"); b.Property("GetData") .HasMaxLength(50) .HasColumnType("int") .HasComment("撷取"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("ItemNo") .HasColumnType("int") .HasComment("项次"); b.Property("PadLeft") .HasColumnType("int") .HasComment("自动补零"); b.Property("SearchStart") .HasColumnType("int") .HasComment("撷取码数(起)"); b.Property("SerialCodeFlag") .HasColumnType("int") .HasComment("序号编码"); b.Property("SerialLength") .HasColumnType("int") .HasComment("长度"); b.Property("SerialType") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("序号类别"); b.Property("SerialTypeNo") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("序号类别编号"); b.Property("SourceType") .HasColumnType("nvarchar(max)") .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("UserDefine") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("使用者自定义"); b.HasKey("Id"); b.ToTable("les_serial_rule_detail"); b.HasComment("编号规则"); }); modelBuilder.Entity("Admin.NET.Core.LesStation", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Code") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("工位编码"); b.Property("ContainerCode") .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") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("工位名称"); b.Property("PlaceSpec") .HasColumnType("decimal(18,2)") .HasComment("库位规格"); b.Property("ProductionlineId") .HasColumnType("bigint") .HasComment("产线Id"); b.Property("StataionStatus") .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("les_station"); b.HasComment("工位表"); }); modelBuilder.Entity("Admin.NET.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 }, new { Id = 383337192390725L, Active = "N", Code = "xbjl", IsDeleted = false, Name = "线边叫料", Sort = 550, Status = 0 }); }); modelBuilder.Entity("Admin.NET.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("FrontProName") .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("ModuleName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .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("Admin.NET.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("ShowTitleMinWidth") .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.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("Admin.NET.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("Admin.NET.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 = 386523071475758L, Code = "datetimepicker", 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 = 386523071475759L, Code = "between", IsDeleted = false, Remark = "介于", Sort = 9, 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 = 355697634480198L, Code = "0", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355697881423942L, Value = "通用" }, new { Id = 355697676427399L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355697881423942L, Value = "危化品" }, new { Id = 355697726726200L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355697881423942L, Value = "液体" }, new { Id = 355697755361301L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355697881423942L, Value = "贵重品" }, new { Id = 355697755361302L, Code = "4", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355697881423942L, Value = "气体" }, new { Id = 355697755361303L, Code = "5", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355697881423942L, 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 = "完成" }, new { Id = 355699760455798L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699731099718L, Value = "未执行" }, new { Id = 355699784736899L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699731099718L, Value = "执行中-AGV" }, new { Id = 355699813859300L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699731099718L, Value = "执行中-输送线" }, new { Id = 355699813859301L, Code = "4", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699731099718L, Value = "执行中-堆垛机" }, new { Id = 355699813859302L, Code = "5", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699731099718L, Value = "等待" }, new { Id = 355699813859303L, Code = "6", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 355699731099718L, Value = "完成" }, new { Id = 383290784104517L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 383290718294085L, Value = "泡沫切割" }, new { Id = 383290816860229L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 383290718294085L, Value = "装配车间" }, new { Id = 383317608218693L, Code = "0", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 383317542490181L, Value = "未开始" }, new { Id = 383317718302789L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 383317542490181L, Value = "运送中" }, new { Id = 383317751234629L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 383317542490181L, Value = "完成" }, new { Id = 384394737053765L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 384394636988485L, Value = "AGV" }, new { Id = 384394851618885L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 384394636988485L, Value = "堆垛机" }, new { Id = 384394877870149L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 384394636988485L, Value = "RGV" }, new { Id = 385412179521605L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 385412129075269L, Value = "切割" }, new { Id = 385412217618501L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 385412129075269L, Value = "压合" }, new { Id = 385412280418373L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 385412129075269L, Value = "CNC" }, new { Id = 386523049214021L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120389L, Value = "入库口" }, new { Id = 386523071475781L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120389L, Value = "出库口" }, new { Id = 386523049214022L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120390L, Value = "发泡一线" }, new { Id = 386523071475723L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120390L, Value = "发泡二线" }, new { Id = 386523071475724L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120390L, Value = "发泡三线" }, new { Id = 386523049214025L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120391L, Value = "未开始" }, new { Id = 386523071475726L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120391L, Value = "进行中" }, new { Id = 386523071475727L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120391L, Value = "完成" }, new { Id = 386523071475728L, Code = "4", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120391L, Value = "撤回" }, new { Id = 386523049214029L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120392L, Value = "入库" }, new { Id = 386523071475730L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120392L, Value = "出库" }, new { Id = 386523071475731L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120392L, Value = "调拨" }, new { Id = 386523071475732L, Code = "4", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120392L, Value = "越库" }, new { Id = 386523049214033L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120393L, Value = "未下发" }, new { Id = 386523071475734L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120393L, Value = "已下发" }, new { Id = 386523071475735L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120393L, Value = "执行中" }, new { Id = 386523071475736L, Code = "4", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120393L, Value = "完成" }, new { Id = 386523071475737L, Code = "5", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120393L, Value = "撤回" }, new { Id = 386523049214038L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "产线退库" }, new { Id = 386523071475739L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "生产入库" }, new { Id = 386523071475740L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "余料回库" }, new { Id = 386523071475741L, Code = "4", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "采购入库" }, new { Id = 386523071475742L, Code = "5", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "其他" }, new { Id = 386523071475743L, Code = "6", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "发货单" }, new { Id = 386523071475744L, Code = "7", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "生产领料" }, new { Id = 386523071475745L, Code = "8", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "销售出库" }, new { Id = 386523071475746L, Code = "9", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "供应商退库" }, new { Id = 386523071475747L, Code = "10", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "泡沫出库" }, new { Id = 386523071475748L, Code = "11", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "出库其他" }, new { Id = 386523071475749L, Code = "12", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "仓库调拨" }, new { Id = 386523071475750L, Code = "13", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "库区调拨" }, new { Id = 386523071475751L, Code = "14", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "库位调拨" }, new { Id = 386523071475752L, Code = "15", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "项目调拨" }, new { Id = 386523071475753L, Code = "16", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120394L, Value = "调拨其他" }, new { Id = 386523071475754L, Code = "1", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120395L, Value = "不使用" }, new { Id = 386523071475755L, Code = "2", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120395L, Value = "未签核" }, new { Id = 386523071475756L, Code = "3", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120395L, Value = "签核中" }, new { Id = 386523071475757L, Code = "4", IsDeleted = false, Remark = "", Sort = 100, Status = 0, TypeId = 386522984120395L, Value = "已签核" }); }); modelBuilder.Entity("Admin.NET.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("EnumClassName") .HasMaxLength(200) .HasColumnType("nvarchar(200)") .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 = 355697881423942L, Code = "container_category", 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 }, new { Id = 355699731099718L, Code = "taskdodevice_statusenum", IsDeleted = false, Name = "任务设备状态", Remark = "", Sort = 100, Status = 0 }, new { Id = 383290718294085L, Code = "les_workshop_type", IsDeleted = false, Name = "所属车间", Remark = "", Sort = 100, Status = 0 }, new { Id = 383317542490181L, Code = "les_takematerials_status", IsDeleted = false, Name = "叫料单状态", Remark = "", Sort = 100, Status = 0 }, new { Id = 384394636988485L, Code = "dodevice_type", IsDeleted = false, Name = "设备类型", Remark = "", Sort = 100, Status = 0 }, new { Id = 385412129075269L, Code = "lesworkshop_section", IsDeleted = false, Name = "工段", Remark = "", Sort = 100, Status = 0 }, new { Id = 386522984120389L, Code = "les_entrance_type", IsDeleted = false, Name = "库口类型", Remark = "", Sort = 100, Status = 0 }, new { Id = 386522984120390L, Code = "blankingproductionLine_enum", IsDeleted = false, Name = "下料产线", Remark = "", Sort = 100, Status = 0 }, new { Id = 386522984120391L, Code = "orderdetails_statusenum", IsDeleted = false, Name = "单据明细表状态", Remark = "", Sort = 100, Status = 0 }, new { Id = 386522984120392L, Code = "orderlargecategory_Enum", IsDeleted = false, Name = "单据大类", Remark = "", Sort = 100, Status = 0 }, new { Id = 386522984120393L, Code = "order_statusenum", IsDeleted = false, Name = "单据主表状态", Remark = "", Sort = 100, Status = 0 }, new { Id = 386522984120394L, Code = "ordersubclass_enum", IsDeleted = false, Name = "单据小类", Remark = "", Sort = 100, Status = 0 }, new { Id = 386522984120395L, Code = "issue_state", IsDeleted = false, Name = "签核状态", Remark = "", Sort = 100, Status = 0 }); }); modelBuilder.Entity("Admin.NET.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 = "租户3公司" }, new { Id = 142307070910552L, JobNum = "D1002", OrgId = 142307070910539L, OrgName = "租户3公司" }, new { Id = 142307070910553L, JobNum = "D1003", OrgId = 142307070910539L, OrgName = "租户3公司" }, 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("Admin.NET.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("Admin.NET.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("Admin.NET.Core.SysExcelTemplate", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AppName") .IsRequired() .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("所属应用"); b.Property("ClassName") .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("DataStartLine") .HasColumnType("int") .HasComment("数据开始行"); b.Property("HeadStartLine") .HasColumnType("int") .HasComment("表头开始行"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("模板名称"); b.Property("Status") .HasColumnType("int") .HasComment("状态"); b.Property("TemplateFileName") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("模板文件名称"); b.Property("UnionUniqueFields") .IsRequired() .HasMaxLength(300) .HasColumnType("nvarchar(300)") .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("Version") .IsRequired() .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("版本"); b.HasKey("Id"); b.HasAlternateKey("ClassName", "Version", "AppName"); b.ToTable("sys_excel_template"); b.HasComment("Excel模板"); }); modelBuilder.Entity("Admin.NET.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("Admin.NET.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("Admin.NET.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("Admin.NET.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("Admin.NET.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("Admin.NET.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("Admin.NET.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 = 494834310545477L, Application = "system", Code = "sys_wmspdapower_mgr", Component = "main/WmsPdaPower/index", IsDeleted = false, Name = "Pda菜单", OpenType = 1, Pid = 142307070914633L, Pids = "[0],[142307070914633],", Router = "/WmsPdaPower", Sort = 101, Status = 0, Type = 1, 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 }, new { Id = 383310358700101L, Application = "busiapp", Code = "Maste_lesproductionline_mgr", Component = "main/LesProductionline/index", Icon = "gateway", IsDeleted = false, Name = "产线信息", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/lesproductionline", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 383310359138373L, Application = "busiapp", Code = "Maste_lesproductionline_mgr_page", IsDeleted = false, Name = "产线信息查询", OpenType = 0, Permission = "LesProductionline:page", Pid = 383310358700101L, Pids = "[0],[383310357848133],[383310358700101],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383310359146565L, Application = "busiapp", Code = "Maste_lesproductionline_mgr_detail", IsDeleted = false, Name = "产线信息详情", OpenType = 0, Permission = "LesProductionline:detail", Pid = 383310358700101L, Pids = "[0],[383310357848133],[383310358700101],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383310359146566L, Application = "busiapp", Code = "Maste_lesproductionline_mgr_add", IsDeleted = false, Name = "产线信息增加", OpenType = 0, Permission = "LesProductionline:add", Pid = 383310358700101L, Pids = "[0],[383310357848133],[383310358700101],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383310359150661L, Application = "busiapp", Code = "Maste_lesproductionline_mgr_delete", IsDeleted = false, Name = "产线信息删除", OpenType = 0, Permission = "LesProductionline:delete", Pid = 383310358700101L, Pids = "[0],[383310357848133],[383310358700101],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383310359154757L, Application = "busiapp", Code = "Maste_lesproductionline_mgr_edit", IsDeleted = false, Name = "产线信息编辑", OpenType = 0, Permission = "LesProductionlinel:edit", Pid = 383310358700101L, Pids = "[0],[383310357848133],[383310358700101],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383311866703941L, Application = "busiapp", Code = "Maste_lesstation_mgr", Component = "main/LesStation/index", Icon = "team", IsDeleted = false, Name = "工位信息", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/lesstation", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 383311866744901L, Application = "busiapp", Code = "Maste_lesstation_mgr_page", IsDeleted = false, Name = "工位信息查询", OpenType = 0, Permission = "LesStation:page", Pid = 383311866703941L, Pids = "[0],[383311866441797],[383311866703941],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383311866748997L, Application = "busiapp", Code = "Maste_lesstation_mgr_detail", IsDeleted = false, Name = "工位信息详情", OpenType = 0, Permission = "LesStation:detail", Pid = 383311866703941L, Pids = "[0],[383311866441797],[383311866703941],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383311866753093L, Application = "busiapp", Code = "Maste_lesstation_mgr_add", IsDeleted = false, Name = "工位信息增加", OpenType = 0, Permission = "LesStation:add", Pid = 383311866703941L, Pids = "[0],[383311866441797],[383311866703941],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383311866753094L, Application = "busiapp", Code = "Maste_lesstation_mgr_delete", IsDeleted = false, Name = "工位信息删除", OpenType = 0, Permission = "LesStation:delete", Pid = 383311866703941L, Pids = "[0],[383311866441797],[383311866703941],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383311866753095L, Application = "busiapp", Code = "Maste_lesstation_mgr_edit", IsDeleted = false, Name = "工位信息编辑", OpenType = 0, Permission = "LesStation:edit", Pid = 383311866703941L, Pids = "[0],[383311866441797],[383311866703941],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383328166334533L, Application = "xbjl", Code = "Maste_lestakematerials_mgr", Component = "main/LesTakematerials/index", Icon = "deployment-unit", IsDeleted = false, Name = "叫料管理", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/lestakematerials", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 383328166449221L, Application = "xbjl", Code = "Maste_lestakematerials_mgr_page", IsDeleted = false, Name = "叫料查询", OpenType = 0, Permission = "LesTakematerials:page", Pid = 383328166334533L, Pids = "[0],[383328165556293],[383328166334533],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383328166457413L, Application = "xbjl", Code = "Maste_lestakematerials_mgr_detail", IsDeleted = false, Name = "叫料详情", OpenType = 0, Permission = "LesTakematerials:detail", Pid = 383328166334533L, Pids = "[0],[383328165556293],[383328166334533],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383328166461509L, Application = "xbjl", Code = "Maste_lestakematerials_mgr_add", IsDeleted = false, Name = "叫料增加", OpenType = 0, Permission = "LesTakematerials:add", Pid = 383328166334533L, Pids = "[0],[383328165556293],[383328166334533],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383328166461510L, Application = "xbjl", Code = "Maste_lestakematerials_mgr_delete", IsDeleted = false, Name = "叫料删除", OpenType = 0, Permission = "LesTakematerials:delete", Pid = 383328166334533L, Pids = "[0],[383328165556293],[383328166334533],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 383328166461511L, Application = "xbjl", Code = "Maste_lestakematerials_mgr_edit", IsDeleted = false, Name = "叫料编辑", OpenType = 0, Permission = "LesTakematerials:edit", Pid = 383328166334533L, Pids = "[0],[383328165556293],[383328166334533],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 386851902500933L, Application = "warecount", Code = "Maste_wmsmaterialstock_mgr", Component = "main/WmsMaterialStock/index", Icon = "vertical-left", IsDeleted = false, Name = "库存信息", OpenType = 1, Pid = 0L, Pids = "[0],", Router = "/wmsmaterialstock", Sort = 100, Status = 0, Type = 1, Visible = "Y", Weight = 2 }, new { Id = 386851902545989L, Application = "warecount", Code = "Maste_wmsmaterialstock_mgr_page", IsDeleted = false, Name = "库存查询", OpenType = 0, Permission = "WmsMaterialStock:page", Pid = 386851902500933L, Pids = "[0],[386851902124101],[386851902500933],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 386851902550085L, Application = "warecount", Code = "Maste_wmsmaterialstock_mgr_detail", IsDeleted = false, Name = "库存详情", OpenType = 0, Permission = "WmsMaterialStock:detail", Pid = 386851902500933L, Pids = "[0],[386851902124101],[386851902500933],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 386851902554181L, Application = "warecount", Code = "Maste_wmsmaterialstock_mgr_add", IsDeleted = false, Name = "库存增加", OpenType = 0, Permission = "WmsMaterialStock:add", Pid = 386851902500933L, Pids = "[0],[386851902124101],[386851902500933],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 386851902558277L, Application = "warecount", Code = "Maste_wmsmaterialstock_mgr_delete", IsDeleted = false, Name = "库存删除", OpenType = 0, Permission = "WmsMaterialStock:delete", Pid = 386851902500933L, Pids = "[0],[386851902124101],[386851902500933],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }, new { Id = 386851902558278L, Application = "warecount", Code = "Maste_wmsmaterialstock_mgr_edit", IsDeleted = false, Name = "库存编辑", OpenType = 0, Permission = "WmsMaterialStock:edit", Pid = 386851902500933L, Pids = "[0],[386851902124101],[386851902500933],", Sort = 100, Status = 0, Type = 2, Visible = "Y", Weight = 2 }); }); modelBuilder.Entity("Admin.NET.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("Admin.NET.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("Admin.NET.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("Admin.NET.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("Admin.NET.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("Admin.NET.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("Admin.NET.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("Admin.NET.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("Admin.NET.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("ProductionlineId") .HasColumnType("bigint"); 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.Property("WorkShopType") .HasColumnType("int"); 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", ProductionlineId = 0L, Sex = 1, Status = 0, WorkShopType = 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", ProductionlineId = 0L, Sex = 1, Status = 0, WorkShopType = 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", ProductionlineId = 0L, Sex = 1, Status = 0, WorkShopType = 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", ProductionlineId = 0L, Sex = 1, Status = 0, WorkShopType = 0 }); }); modelBuilder.Entity("Admin.NET.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("Admin.NET.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("Admin.NET.Core.TestStudent", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Age") .HasColumnType("int") .HasComment("学生年龄"); b.Property("BrithDate") .HasColumnType("datetime2") .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("Gender") .HasColumnType("int") .HasComment("性别"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .HasMaxLength(10) .HasColumnType("nvarchar(10)") .HasComment("学生姓名"); b.Property("StartName") .HasMaxLength(50) .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("test_students"); b.HasComment("学生信息表"); }); modelBuilder.Entity("Admin.NET.Core.TestStudent2", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Age") .HasColumnType("int") .HasComment("学生年龄"); b.Property("BrithDate") .HasColumnType("datetime2") .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("Gender") .HasColumnType("int") .HasComment("性别"); b.Property("HasMoney") .HasColumnType("decimal(10,3)") .HasColumnName("HasMoney") .HasComment("零花钱"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .HasMaxLength(10) .HasColumnType("nvarchar(10)") .HasComment("学生姓名"); b.Property("StartName") .HasMaxLength(50) .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("test_students2"); b.HasComment("学生信息表"); }); modelBuilder.Entity("Admin.NET.Core.TestStudent3", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Age") .HasColumnType("int") .HasComment("学生年龄"); b.Property("BrithDate") .HasColumnType("datetime2") .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("Gender") .HasColumnType("int") .HasComment("性别"); b.Property("HasMoney") .HasColumnType("decimal(10,3)") .HasColumnName("HasMoney") .HasComment("零花钱"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .HasMaxLength(10) .HasColumnType("nvarchar(10)") .HasComment("学生姓名"); b.Property("StartName") .HasMaxLength(50) .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("test_students3"); b.HasComment("学生信息表"); }); modelBuilder.Entity("Admin.NET.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("IsSteel") .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.Property("WorkShopType") .HasColumnType("int") .HasComment("所属车间"); b.HasKey("Id"); b.ToTable("wms_area"); b.HasComment("库区表"); }); modelBuilder.Entity("Admin.NET.Core.WmsContainer", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AssetNo") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("资产编号"); b.Property("ContainerCategory") .HasColumnType("int") .HasComment("托盘分类"); 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("ErpNo") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("Erp单号"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("IsVirtually") .HasColumnType("int") .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.Property("WorkShopType") .HasColumnType("int") .HasComment("所属车间"); b.HasKey("Id"); b.ToTable("wms_container"); b.HasComment("托盘信息表"); }); modelBuilder.Entity("Admin.NET.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.HasKey("Id"); b.ToTable("wms_containerplace"); b.HasComment("托盘库位关系表"); }); modelBuilder.Entity("Admin.NET.Core.WmsDumpOrder", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Billdate") .HasColumnType("datetimeoffset") .HasComment("创建日期"); b.Property("Companyname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("Creator") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("创建人"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("NO") .IsRequired() .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("单据编号"); b.Property("OrderLargeCategory") .HasColumnType("bigint") .HasComment("单据大类"); b.Property("OrderStatus") .HasColumnType("int") .HasComment("单据状态"); b.Property("OrderSubclass") .HasColumnType("bigint") .HasComment("单据小类"); b.Property("SOID") .HasColumnType("bigint") .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_dumporder"); b.HasComment("转储单"); }); modelBuilder.Entity("Admin.NET.Core.WmsDumpOrderDetails", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Batchno_SCM") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("SCM批次号"); b.Property("Batchno_WMS") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("WMS批次号"); 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("Length") .HasColumnType("decimal(18,2)") .HasComment("长度"); b.Property("Materialcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料编号"); b.Property("Materialname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料名称"); b.Property("OID") .HasColumnType("bigint") .HasComment("上位系统单据明细唯一识别码"); b.Property("OrderId") .HasMaxLength(50) .HasColumnType("bigint") .HasComment("单据Id"); b.Property("OrderStatus") .HasColumnType("int") .HasComment("单据状态"); b.Property("ProjectCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("库存项目编码"); b.Property("Projectcode_To") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("新库存项目编码"); b.Property("Qty") .HasColumnType("decimal(18,2)") .HasComment("数量"); b.Property("Unit") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("OrderId"); b.ToTable("wms_dumporder_details"); b.HasComment("转储单明细"); }); modelBuilder.Entity("Admin.NET.Core.WmsGoodsReturnOrder", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Billdate") .HasColumnType("datetimeoffset") .HasComment("创建日期"); b.Property("Companyname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("GoodsReturnStatus") .HasColumnType("int") .HasComment("退货状态"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("NO") .IsRequired() .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("单据编号"); b.Property("OrderLargeCategory") .HasColumnType("bigint") .HasComment("单据大类"); b.Property("OrderSubclass") .HasColumnType("bigint") .HasComment("单据小类"); b.Property("SOID") .HasColumnType("bigint") .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("Vendorcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("供应商编码"); b.Property("Vendorname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("供应商名称"); b.Property("WarehouseCentername") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("仓储中心"); b.Property("WarehouseKeepername") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("仓管员"); b.HasKey("Id"); b.ToTable("wms_goodsreturnorder"); b.HasComment("退货单"); }); modelBuilder.Entity("Admin.NET.Core.WmsGoodsReturnOrderDetails", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Batchno_WMS") .HasColumnType("nvarchar(max)") .HasComment("批次号"); b.Property("ContractCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("CustomsNum") .HasColumnType("decimal(18,2)") .HasComment("报关数量"); b.Property("CustomsPrices") .HasColumnType("decimal(18,2)") .HasComment("报关金额"); b.Property("CustomsUnitName") .HasColumnType("nvarchar(max)") .HasComment("报关单位"); b.Property("DeclarationCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("报关单号"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("ItemNo") .HasColumnType("nvarchar(max)") .HasComment("报关项号"); b.Property("Materialcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料编号"); b.Property("Materialname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料名称"); b.Property("OID") .HasColumnType("bigint") .HasComment("上位系统单据明细唯一识别码"); b.Property("OrderId") .HasMaxLength(50) .HasColumnType("bigint") .HasComment("单据Id"); b.Property("Price") .HasColumnType("decimal(18,2)") .HasComment("不含税单价"); b.Property("ProjectCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("项目编号"); b.Property("Qty") .HasColumnType("decimal(18,2)") .HasComment("数量"); b.Property("ReceivingStatus") .HasColumnType("int") .HasComment("退货状态"); b.Property("SingleLength") .HasColumnType("decimal(18,2)") .HasComment("单根长度"); b.Property("StoreRoomname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("仓间"); b.Property("SumPrice") .HasColumnType("decimal(18,2)") .HasComment("成本金额"); b.Property("TACode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("TA号"); b.Property("TheoreticalWeight") .HasColumnType("decimal(18,2)") .HasComment("理论重量"); b.Property("TradeName") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("报关品名"); b.Property("Unit") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("OrderId"); b.ToTable("wms_goodsreturnorder_details"); b.HasComment("退货单据明细表"); }); modelBuilder.Entity("Admin.NET.Core.WmsHistoryMaterialContainer", 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("MaterialDensity") .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("MaterialId"); b.ToTable("wms_history_materialcontainer"); b.HasComment("物料托盘历史表"); }); modelBuilder.Entity("Admin.NET.Core.WmsMaterial", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AreaIds") .HasColumnType("nvarchar(max)") .HasComment("库区Ids"); b.Property("AreaNameParameter") .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("Description") .HasMaxLength(500) .HasColumnType("nvarchar(500)") .HasComment("描述"); b.Property("InspectionMethod") .HasColumnType("int") .HasComment("物料检验"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("MaterialBatch") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料批次"); b.Property("MaterialDensity") .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("MaterialUnit") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .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("Safeqty") .HasColumnType("decimal(18,2)") .HasComment("安全存量"); b.Property("StationIds") .HasColumnType("nvarchar(max)") .HasComment("工作区Ids"); b.Property("StationNameParameter") .HasColumnType("nvarchar(max)") .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_material"); b.HasComment("物料信息表"); }); modelBuilder.Entity("Admin.NET.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("MaterialDensity") .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("OrderDetailsId") .HasColumnType("bigint") .HasComment("单据明细Id"); 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.Property("WmsContainerId") .HasColumnType("bigint"); b.HasKey("Id"); b.HasIndex("MaterialId"); b.HasIndex("WmsContainerId"); b.ToTable("wms_materialcontainer"); b.HasComment("物料托盘关系表"); }); modelBuilder.Entity("Admin.NET.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("ContainerId") .HasColumnType("bigint") .HasComment("托盘Id"); b.Property("ContractCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("High") .HasColumnType("int") .HasComment("高"); b.Property("InspectionMethod") .HasColumnType("int") .HasComment("检验方式"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Long") .HasColumnType("int") .HasComment("长"); b.Property("MaterialBatch") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("物料批次"); b.Property("MaterialDensity") .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("ProjectCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("项目编号"); b.Property("QuantityOfBill") .HasColumnType("decimal(18,2)") .HasComment("账面数量"); b.Property("Source") .HasColumnType("int") .HasComment("入库来源"); b.Property("StockNumber") .HasColumnType("decimal(18,2)") .HasComment("实物库存数"); b.Property("TACode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("TA号"); 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("Wide") .HasColumnType("int") .HasComment("宽"); b.HasKey("Id"); b.ToTable("wms_materialstock"); b.HasComment("库存表"); }); modelBuilder.Entity("Admin.NET.Core.WmsMerchantinfo", 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("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("MerchantAddress") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("客商地址"); b.Property("MerchantAttribute") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("客商属性"); b.Property("MerchantContact") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("客商联系人"); b.Property("MerchantEmail") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("客商邮箱"); b.Property("MerchantFax") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("客商传真"); b.Property("MerchantGrade") .HasColumnType("int") .HasComment("客商等级"); b.Property("MerchantName") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("客商名称"); b.Property("MerchantNo") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("客商编号"); b.Property("MerchantPhone") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("客商电话"); b.Property("MerchantShort") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("客商简称"); b.Property("MerchantTmt") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("客商行业"); b.Property("MerchantType") .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_merchantinfo"); b.HasComment("客商信息表"); }); modelBuilder.Entity("Admin.NET.Core.WmsOrder", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Billdate") .HasColumnType("datetimeoffset") .HasComment("创建日期"); b.Property("Companyname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("DeclarationCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("报关单号"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Majorname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("专业"); b.Property("NO") .IsRequired() .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("单据编号"); b.Property("OrderLargeCategory") .HasColumnType("bigint") .HasComment("单据大类"); b.Property("OrderStatus") .HasColumnType("int") .HasComment("单据状态"); b.Property("OrderSubclass") .HasColumnType("bigint") .HasComment("单据小类"); b.Property("Remarks") .HasMaxLength(500) .HasColumnType("nvarchar(500)") .HasComment("备注"); b.Property("SOID") .HasColumnType("bigint") .HasComment("上位系统单据唯一识别码"); b.Property("SourceBillNo") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("送货通知单号"); b.Property("StoreRoomname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("仓间"); b.Property("TradeMode") .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("Vendorcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("供应商编码"); b.Property("Vendorname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("供应商名称"); b.Property("WarehouseCentername") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("仓储中心"); b.Property("WarehouseKeepername") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("仓管员"); b.HasKey("Id"); b.ToTable("wms_order"); b.HasComment("单据表"); }); modelBuilder.Entity("Admin.NET.Core.WmsOrderDetails", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("ContainerCode") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("托盘编码"); b.Property("ContractCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("CustomsNum") .HasColumnType("decimal(18,2)") .HasComment("报关数量"); b.Property("CustomsPrices") .HasColumnType("decimal(18,2)") .HasComment("报关金额"); b.Property("CustomsUnitName") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("报关单位"); b.Property("InspectionResults") .HasColumnType("int") .HasComment("检验结果"); b.Property("InventoryQty") .HasColumnType("decimal(18,2)") .HasComment("入库数量"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("ItemNo") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("报关项号"); b.Property("Materialcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料编号"); b.Property("Materialname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料名称"); b.Property("OID") .HasColumnType("bigint") .HasComment("上位系统单据明细唯一识别码"); b.Property("OrderId") .HasMaxLength(50) .HasColumnType("bigint") .HasComment("单据Id"); b.Property("OrderStatus") .HasColumnType("int") .HasComment("单据状态"); b.Property("PlaceCode") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库位编码"); b.Property("Price") .HasColumnType("decimal(18,2)") .HasComment("不含税单价"); b.Property("ProjectCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("项目编号"); b.Property("Qty") .HasColumnType("decimal(18,2)") .HasComment("数量"); b.Property("SingleLength") .HasColumnType("decimal(18,2)") .HasComment("单根长度"); b.Property("SpecialNeeds") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("特殊要求"); b.Property("SumPrice") .HasColumnType("decimal(18,2)") .HasComment("成本金额"); b.Property("TACode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("TA号"); b.Property("TheoreticalWeight") .HasColumnType("decimal(18,2)") .HasComment("理论重量"); b.Property("TradeName") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("报关品名"); b.Property("Unit") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("OrderId"); b.ToTable("wms_order_details"); b.HasComment("单据明细表"); }); modelBuilder.Entity("Admin.NET.Core.WmsOrderType", 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("LesWorkShopType") .HasColumnType("int") .HasComment("所属车间"); b.Property("Name") .IsRequired() .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("名称"); 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("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_order_type"); b.HasComment("单据类型维护表"); }); modelBuilder.Entity("Admin.NET.Core.WmsPdaPower", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Clolor") .IsRequired() .HasColumnType("nvarchar(max)") .HasComment("颜色"); 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("Icon") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("图标"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Name") .IsRequired() .HasColumnType("nvarchar(max)") .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("WorkShopType") .HasColumnType("int") .HasComment("所属车间"); b.HasKey("Id"); b.ToTable("wms_pdapower"); b.HasComment("PDA菜单表"); }); modelBuilder.Entity("Admin.NET.Core.WmsPlace", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AgvCode") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库位对应AGV编码"); 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("LogicalName") .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("库位表"); }); modelBuilder.Entity("Admin.NET.Core.WmsReceiptOrder", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Billdate") .HasColumnType("datetimeoffset") .HasComment("创建日期"); b.Property("Companyname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("DeclarationCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("报关单号"); b.Property("InspectionStatus") .HasColumnType("int") .HasComment("报检状态"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Majorname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("专业"); b.Property("NO") .IsRequired() .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("单据编号"); b.Property("OrderLargeCategory") .HasColumnType("bigint") .HasComment("单据大类"); b.Property("OrderSubclass") .HasColumnType("bigint") .HasComment("单据小类"); b.Property("ReceivingStatus") .HasColumnType("int") .HasComment("收货状态"); b.Property("Remarks") .HasMaxLength(500) .HasColumnType("nvarchar(500)") .HasComment("备注"); b.Property("SOID") .HasColumnType("bigint") .HasComment("上位系统单据唯一识别码"); b.Property("SourceBillNo") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("送货通知单号"); b.Property("StoreRoomname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("仓间"); b.Property("TradeMode") .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("Vendorcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("供应商编码"); b.Property("Vendorname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("供应商名称"); b.Property("WMSNO") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("WMS收货单号"); b.Property("WarehouseCentername") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("仓储中心"); b.Property("WarehouseKeepername") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("仓管员"); b.HasKey("Id"); b.ToTable("wms_receiptorder"); b.HasComment("收货单"); }); modelBuilder.Entity("Admin.NET.Core.WmsReceiptOrderDetails", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("ContainerCode") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("托盘编码"); b.Property("ContractCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("CustomsNum") .HasColumnType("decimal(18,2)") .HasComment("报关数量"); b.Property("CustomsPrices") .HasColumnType("decimal(18,2)") .HasComment("报关金额"); b.Property("CustomsUnitName") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("报关单位"); b.Property("DeliveryQty") .HasMaxLength(50) .HasColumnType("decimal(18,2)") .HasComment("送货数量"); b.Property("InspectionResultsEnum") .HasColumnType("int") .HasComment("报检结果"); b.Property("InspectionStatus") .HasColumnType("int") .HasComment("报检状态"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("ItemNo") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("报关项号"); b.Property("Materialcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料编号"); b.Property("Materialname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料名称"); b.Property("OID") .HasColumnType("bigint") .HasComment("上位系统单据明细唯一识别码"); b.Property("OrderId") .HasMaxLength(50) .HasColumnType("bigint") .HasComment("单据Id"); b.Property("PlaceCode") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库位编码"); b.Property("Price") .HasColumnType("decimal(18,2)") .HasComment("不含税单价"); b.Property("ProjectCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("项目编号"); b.Property("Qty") .HasColumnType("decimal(18,2)") .HasComment("数量"); b.Property("ReceivedQty") .HasMaxLength(50) .HasColumnType("decimal(18,2)") .HasComment("收货数量"); b.Property("ReceivingStatus") .HasColumnType("int") .HasComment("收货状态"); b.Property("SingleLength") .HasColumnType("decimal(18,2)") .HasComment("单根长度"); b.Property("SpecialNeeds") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("特殊要求"); b.Property("SumPrice") .HasColumnType("decimal(18,2)") .HasComment("成本金额"); b.Property("TACode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("TA号"); b.Property("TheoreticalWeight") .HasColumnType("decimal(18,2)") .HasComment("理论重量"); b.Property("TradeName") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("报关品名"); b.Property("Unit") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("OrderId"); b.ToTable("wms_receiptorder_details"); b.HasComment("收货单据明细表"); }); modelBuilder.Entity("Admin.NET.Core.WmsSortOrder", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("ActualQuantity") .HasColumnType("decimal(18,2)") .HasComment("实际分拣数"); b.Property("ContainerCode") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("容器编号"); b.Property("ContainerOrderNo") .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("Materialcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料编号"); b.Property("Materialname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料名称"); b.Property("OrderDetailID") .HasColumnType("bigint"); b.Property("OrderNo") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("来源单号"); b.Property("PartCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("分段号"); b.Property("PlaceCode") .HasMaxLength(20) .HasColumnType("nvarchar(20)") .HasComment("库位编码"); b.Property("ProjectCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("项目编号"); b.Property("Remarks") .HasMaxLength(500) .HasColumnType("nvarchar(500)") .HasComment("备注"); b.Property("SortQuantity") .HasColumnType("decimal(18,2)") .HasComment("分拣数"); b.Property("SortStatus") .HasColumnType("int") .HasComment("状态-未分拣_1、分拣完成_2"); b.Property("TACode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("TA号"); 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_sortorder"); b.HasComment("分拣表"); }); modelBuilder.Entity("Admin.NET.Core.WmsStockReturnOrder", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("BenefitingDepartcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("领料部门"); b.Property("Billdate") .HasColumnType("datetimeoffset") .HasComment("退料申请日期"); b.Property("Companyname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("公司"); b.Property("ConstructionTeamID") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("施工队"); b.Property("CostCenterID") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("FI_Client_Analysis_H") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("客户"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("MoveType") .HasColumnType("int") .HasComment("事务类型"); b.Property("NO") .IsRequired() .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("单据编号"); b.Property("OrderLargeCategory") .HasColumnType("bigint") .HasComment("单据大类"); b.Property("OrderStatus") .HasColumnType("int") .HasComment("单据状态"); b.Property("OrderSubclass") .HasColumnType("bigint") .HasComment("单据小类"); b.Property("PickerID") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("领取人"); b.Property("SOID") .HasColumnType("bigint") .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("WBSElementcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("领用项目号"); b.HasKey("Id"); b.ToTable("wms_stockreturn_order"); b.HasComment("退料入库单"); }); modelBuilder.Entity("Admin.NET.Core.WmsStockReturnOrderDetails", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Batchno_SCM") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("SCM批次号"); b.Property("Batchno_WMS") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("WMS批次号"); 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("Length") .HasColumnType("decimal(18,2)") .HasComment("单根长度"); b.Property("Materialcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料编号"); b.Property("Materialname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料名称"); b.Property("Number") .HasColumnType("decimal(18,2)") .HasComment("件数"); b.Property("OID") .HasColumnType("bigint") .HasComment("上位系统单据明细唯一识别码"); b.Property("OrderId") .HasMaxLength(50) .HasColumnType("bigint") .HasComment("单据Id"); b.Property("PartCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("分段号"); b.Property("ProjectCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("项目编号"); b.Property("Qty") .HasColumnType("decimal(18,2)") .HasComment("数量"); b.Property("TACode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("TA号"); b.Property("Unit") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("OrderId"); b.ToTable("wms_stockreturn_order_details"); b.HasComment("退料入库单详情"); }); modelBuilder.Entity("Admin.NET.Core.WmsTakeMaterialOrder", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("BenefitingDepartcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("领料部门"); b.Property("Billdate") .HasColumnType("datetimeoffset") .HasComment("领料单申请日期"); b.Property("Companyname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("公司"); b.Property("ConstructionTeamID") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("施工队"); b.Property("CostCenterID") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("FI_Client_Analysis_H") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("客户"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("IsInnerCompany") .HasColumnType("bigint") .HasComment("是否公司间交易"); b.Property("MoveType") .HasColumnType("nvarchar(max)") .HasComment("事务类型"); b.Property("NO") .IsRequired() .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("单据编号"); b.Property("OrderLargeCategory") .HasColumnType("bigint") .HasComment("单据大类"); b.Property("OrderStatus") .HasColumnType("int") .HasComment("单据状态"); b.Property("OrderSubclass") .HasColumnType("bigint") .HasComment("单据小类"); b.Property("PickerID") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("领料人"); b.Property("SOID") .HasColumnType("bigint") .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("WBSElementcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("领用项目号"); b.Property("WarehouseCentername") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("仓储中心"); b.HasKey("Id"); b.ToTable("wms_takematerialorder"); b.HasComment("领料单"); }); modelBuilder.Entity("Admin.NET.Core.WmsTakeMaterialOrderDetail", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("Batchno_SCM") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("SCM批次号"); b.Property("Batchno_WMS") .HasColumnType("nvarchar(max)") .HasComment("WMS批次号"); b.Property("ContainerCode") .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("DistributeQty") .HasColumnType("decimal(18,2)") .HasComment("下发数量"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("Materialcode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料编号"); b.Property("Materialname") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("物料名称"); b.Property("Number") .HasColumnType("decimal(18,2)") .HasComment("件数"); b.Property("OID") .HasColumnType("bigint") .HasComment("SCM领料申请单明细行唯一标识"); b.Property("OrderId") .HasMaxLength(50) .HasColumnType("bigint") .HasComment("单据Id"); b.Property("OrderStatus") .HasColumnType("int") .HasComment("单据状态"); b.Property("PartCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("分段号"); b.Property("PlaceCode") .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("库位编码"); b.Property("ProjectCode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("项目编号"); b.Property("Qty") .HasColumnType("decimal(18,2)") .HasComment("数量"); b.Property("SingleLength") .HasColumnType("decimal(18,2)") .HasComment("单根长度"); b.Property("TACode") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .HasComment("TA号"); b.Property("Unit") .HasMaxLength(255) .HasColumnType("nvarchar(255)") .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("OrderId"); b.ToTable("wms_takematerial_orderdetail"); b.HasComment("单据明细表"); }); modelBuilder.Entity("Admin.NET.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("Description") .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("int") .HasComment("设备类型"); b.Property("EmptyContainer") .HasColumnType("int") .HasComment("是否空托"); b.Property("IsDeleted") .HasColumnType("bit") .HasComment("软删除标记"); b.Property("IsRead") .HasColumnType("bit") .HasComment("WCS是否可以读取"); b.Property("OrderDetailsId") .HasColumnType("bigint") .HasComment("单据明细Id"); b.Property("OrderNo") .IsRequired() .HasColumnType("nvarchar(max)") .HasComment("组盘记录单据号"); b.Property("SendTimes") .HasColumnType("int") .HasComment("发送次数"); b.Property("SourcePlace") .IsRequired() .HasMaxLength(50) .HasColumnType("nvarchar(50)") .HasComment("起始库位"); b.Property("TaskDodeviceStatus") .HasColumnType("int") .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("任务管理表"); }); modelBuilder.Entity("Admin.NET.Core.WmsWarehouseEntrance", b => { b.Property("Id") .HasColumnType("bigint") .HasComment("Id主键"); b.Property("AffiliatedRoadway") .HasColumnType("int") .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("LesWorkShopType") .HasColumnType("int") .HasComment("所属车间"); b.Property("Name") .IsRequired() .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("名称"); b.Property("Remark") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .HasComment("备注"); b.Property("Status") .HasColumnType("int") .HasComment("状态"); b.Property("Type") .HasColumnType("int") .HasComment("类型-1.入库口_2.出库口"); 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_warehouse_entrance"); b.HasComment("库口表"); }); modelBuilder.Entity("Furion.Extras.Admin.NET.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("ModuleName") .HasMaxLength(100) .HasColumnType("nvarchar(100)") .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.Admin.NET.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.Admin.NET.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("Admin.NET.Core.Entity.WmsBase.WmsRolePdaMenu", b => { b.HasOne("Admin.NET.Core.WmsPdaPower", "WmsPdaPower") .WithMany("WmsRolePdaMenus") .HasForeignKey("PdaMenuId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Admin.NET.Core.SysRole", "SysRole") .WithMany("WmsRolePdaMenus") .HasForeignKey("SysRoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysRole"); b.Navigation("WmsPdaPower"); }); modelBuilder.Entity("Admin.NET.Core.LesEntrance", b => { b.HasOne("Admin.NET.Core.WmsArea", "WmsArea") .WithMany("LesEntrance") .HasForeignKey("AreaId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("WmsArea"); }); modelBuilder.Entity("Admin.NET.Core.SysDictData", b => { b.HasOne("Admin.NET.Core.SysDictType", "SysDictType") .WithMany("SysDictDatas") .HasForeignKey("TypeId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysDictType"); }); modelBuilder.Entity("Admin.NET.Core.SysEmpExtOrgPos", b => { b.HasOne("Admin.NET.Core.SysEmp", "SysEmp") .WithMany() .HasForeignKey("SysEmpId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Admin.NET.Core.SysOrg", "SysOrg") .WithMany() .HasForeignKey("SysOrgId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Admin.NET.Core.SysPos", "SysPos") .WithMany() .HasForeignKey("SysPosId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysEmp"); b.Navigation("SysOrg"); b.Navigation("SysPos"); }); modelBuilder.Entity("Admin.NET.Core.SysEmpPos", b => { b.HasOne("Admin.NET.Core.SysEmp", "SysEmp") .WithMany("SysEmpPos") .HasForeignKey("SysEmpId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Admin.NET.Core.SysPos", "SysPos") .WithMany("SysEmpPos") .HasForeignKey("SysPosId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysEmp"); b.Navigation("SysPos"); }); modelBuilder.Entity("Admin.NET.Core.SysRoleDataScope", b => { b.HasOne("Admin.NET.Core.SysOrg", "SysOrg") .WithMany("SysRoleDataScopes") .HasForeignKey("SysOrgId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Admin.NET.Core.SysRole", "SysRole") .WithMany("SysRoleDataScopes") .HasForeignKey("SysRoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysOrg"); b.Navigation("SysRole"); }); modelBuilder.Entity("Admin.NET.Core.SysRoleMenu", b => { b.HasOne("Admin.NET.Core.SysMenu", "SysMenu") .WithMany("SysRoleMenus") .HasForeignKey("SysMenuId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Admin.NET.Core.SysRole", "SysRole") .WithMany("SysRoleMenus") .HasForeignKey("SysRoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysMenu"); b.Navigation("SysRole"); }); modelBuilder.Entity("Admin.NET.Core.SysUserDataScope", b => { b.HasOne("Admin.NET.Core.SysOrg", "SysOrg") .WithMany("SysUserDataScopes") .HasForeignKey("SysOrgId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Admin.NET.Core.SysUser", "SysUser") .WithMany("SysUserDataScopes") .HasForeignKey("SysUserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysOrg"); b.Navigation("SysUser"); }); modelBuilder.Entity("Admin.NET.Core.SysUserRole", b => { b.HasOne("Admin.NET.Core.SysRole", "SysRole") .WithMany("SysUserRoles") .HasForeignKey("SysRoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("Admin.NET.Core.SysUser", "SysUser") .WithMany("SysUserRoles") .HasForeignKey("SysUserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysRole"); b.Navigation("SysUser"); }); modelBuilder.Entity("Admin.NET.Core.WmsDumpOrderDetails", b => { b.HasOne("Admin.NET.Core.WmsDumpOrder", "WmsDumpOrder") .WithMany("WmsDumpOrderDetails") .HasForeignKey("OrderId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("WmsDumpOrder"); }); modelBuilder.Entity("Admin.NET.Core.WmsGoodsReturnOrderDetails", b => { b.HasOne("Admin.NET.Core.WmsGoodsReturnOrder", "WmsGoodsReturnOrder") .WithMany("WmsGoodsReturnOrderDetails") .HasForeignKey("OrderId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("WmsGoodsReturnOrder"); }); modelBuilder.Entity("Admin.NET.Core.WmsHistoryMaterialContainer", b => { b.HasOne("Admin.NET.Core.WmsMaterial", "WmsMaterial") .WithMany("WmsFoamingHistoryMaterialContainer") .HasForeignKey("MaterialId"); b.Navigation("WmsMaterial"); }); modelBuilder.Entity("Admin.NET.Core.WmsMaterialContainer", b => { b.HasOne("Admin.NET.Core.WmsMaterial", "WmsMaterial") .WithMany("WmsFoamingMaterialContainer") .HasForeignKey("MaterialId"); b.HasOne("Admin.NET.Core.WmsContainer", "WmsContainer") .WithMany() .HasForeignKey("WmsContainerId"); b.Navigation("WmsContainer"); b.Navigation("WmsMaterial"); }); modelBuilder.Entity("Admin.NET.Core.WmsOrderDetails", b => { b.HasOne("Admin.NET.Core.WmsOrder", "WareOrder") .WithMany("WareOrderDetails") .HasForeignKey("OrderId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("WareOrder"); }); modelBuilder.Entity("Admin.NET.Core.WmsPlace", b => { b.HasOne("Admin.NET.Core.WmsArea", "WmsArea") .WithMany("WmsPlaces") .HasForeignKey("AreaId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("WmsArea"); }); modelBuilder.Entity("Admin.NET.Core.WmsReceiptOrderDetails", b => { b.HasOne("Admin.NET.Core.WmsReceiptOrder", "WmsReceiptOrder") .WithMany("WmsReceiptOrderDetails") .HasForeignKey("OrderId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("WmsReceiptOrder"); }); modelBuilder.Entity("Admin.NET.Core.WmsStockReturnOrderDetails", b => { b.HasOne("Admin.NET.Core.WmsStockReturnOrder", "WmsStockReturnOrder") .WithMany("WmsStockReturnOrderDetails") .HasForeignKey("OrderId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("WmsStockReturnOrder"); }); modelBuilder.Entity("Admin.NET.Core.WmsTakeMaterialOrderDetail", b => { b.HasOne("Admin.NET.Core.WmsTakeMaterialOrder", "WmsTakeMaterialOrder") .WithMany("WmsTakeMaterialOrderDetail") .HasForeignKey("OrderId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("WmsTakeMaterialOrder"); }); modelBuilder.Entity("Furion.Extras.Admin.NET.Entity.SysLowCodeDataBase", b => { b.HasOne("Furion.Extras.Admin.NET.Entity.SysLowCode", "SysLowCode") .WithMany("Databases") .HasForeignKey("SysLowCodeId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("SysLowCode"); }); modelBuilder.Entity("Admin.NET.Core.SysDictType", b => { b.Navigation("SysDictDatas"); }); modelBuilder.Entity("Admin.NET.Core.SysEmp", b => { b.Navigation("SysEmpPos"); }); modelBuilder.Entity("Admin.NET.Core.SysMenu", b => { b.Navigation("SysRoleMenus"); }); modelBuilder.Entity("Admin.NET.Core.SysOrg", b => { b.Navigation("SysRoleDataScopes"); b.Navigation("SysUserDataScopes"); }); modelBuilder.Entity("Admin.NET.Core.SysPos", b => { b.Navigation("SysEmpPos"); }); modelBuilder.Entity("Admin.NET.Core.SysRole", b => { b.Navigation("SysRoleDataScopes"); b.Navigation("SysRoleMenus"); b.Navigation("SysUserRoles"); b.Navigation("WmsRolePdaMenus"); }); modelBuilder.Entity("Admin.NET.Core.SysUser", b => { b.Navigation("SysUserDataScopes"); b.Navigation("SysUserRoles"); }); modelBuilder.Entity("Admin.NET.Core.WmsArea", b => { b.Navigation("LesEntrance"); b.Navigation("WmsPlaces"); }); modelBuilder.Entity("Admin.NET.Core.WmsDumpOrder", b => { b.Navigation("WmsDumpOrderDetails"); }); modelBuilder.Entity("Admin.NET.Core.WmsGoodsReturnOrder", b => { b.Navigation("WmsGoodsReturnOrderDetails"); }); modelBuilder.Entity("Admin.NET.Core.WmsMaterial", b => { b.Navigation("WmsFoamingHistoryMaterialContainer"); b.Navigation("WmsFoamingMaterialContainer"); }); modelBuilder.Entity("Admin.NET.Core.WmsOrder", b => { b.Navigation("WareOrderDetails"); }); modelBuilder.Entity("Admin.NET.Core.WmsPdaPower", b => { b.Navigation("WmsRolePdaMenus"); }); modelBuilder.Entity("Admin.NET.Core.WmsReceiptOrder", b => { b.Navigation("WmsReceiptOrderDetails"); }); modelBuilder.Entity("Admin.NET.Core.WmsStockReturnOrder", b => { b.Navigation("WmsStockReturnOrderDetails"); }); modelBuilder.Entity("Admin.NET.Core.WmsTakeMaterialOrder", b => { b.Navigation("WmsTakeMaterialOrderDetail"); }); modelBuilder.Entity("Furion.Extras.Admin.NET.Entity.SysLowCode", b => { b.Navigation("Databases"); }); #pragma warning restore 612, 618 } } }