| | |
| | | .HasDefaultValue(false) |
| | | .HasColumnName("IsDeleted"); |
| | | |
| | | b.Property<bool?>("IsDisabled") |
| | | .HasColumnType("tinyint(1)"); |
| | | |
| | | b.Property<DateTime?>("LastModificationTime") |
| | | .HasColumnType("datetime(6)") |
| | | .HasColumnName("LastModificationTime"); |
| | |
| | | b.Property<Guid?>("LastModifierId") |
| | | .HasColumnType("char(36)") |
| | | .HasColumnName("LastModifierId"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int"); |
| | | |
| | | b.HasKey("PlaceNo", "ContainerNo"); |
| | | |
| | |
| | | b.HasComment("托盘信息表"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("CMS.Plugin.HIAWms.Domain.WmsInOutStockRecords.WmsInOutStockRecord", b => |
| | | modelBuilder.Entity("CMS.Plugin.HIAWms.Domain.WmsInOutStockRecord.WmsInOutStockRecord", b => |
| | | { |
| | | b.Property<Guid>("Id") |
| | | .ValueGeneratedOnAdd() |
| | |
| | | .HasColumnType("tinyint(1)") |
| | | .HasDefaultValue(false) |
| | | .HasColumnName("IsDeleted"); |
| | | |
| | | b.Property<bool?>("IsDisabled") |
| | | .HasColumnType("tinyint(1)") |
| | | .HasComment("是否禁用"); |
| | | |
| | | b.Property<DateTime?>("LastModificationTime") |
| | | .HasColumnType("datetime(6)") |
| | |
| | | .HasMaxLength(500) |
| | | .HasColumnType("varchar(500)") |
| | | .HasComment("备注"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int") |
| | | .HasComment("排序"); |
| | | |
| | | b.Property<string>("SourcePlace") |
| | | .HasMaxLength(50) |
| | |
| | | |
| | | b.HasComment("仓库信息表"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("CMS.Plugin.HIAWms.Domain.WmsTask.WmsTask", b => |
| | | { |
| | | b.Property<Guid>("Id") |
| | | .ValueGeneratedOnAdd() |
| | | .HasColumnType("char(36)"); |
| | | |
| | | b.Property<int?>("Aisle") |
| | | .HasColumnType("int") |
| | | .HasComment("巷道"); |
| | | |
| | | b.Property<string>("ConcurrencyStamp") |
| | | .IsConcurrencyToken() |
| | | .HasMaxLength(40) |
| | | .HasColumnType("varchar(40)") |
| | | .HasColumnName("ConcurrencyStamp"); |
| | | |
| | | b.Property<string>("ContainerNo") |
| | | .HasMaxLength(50) |
| | | .HasColumnType("varchar(50)") |
| | | .HasComment("托盘编号"); |
| | | |
| | | b.Property<DateTime>("CreationTime") |
| | | .HasColumnType("datetime(6)") |
| | | .HasColumnName("CreationTime"); |
| | | |
| | | b.Property<Guid?>("CreatorId") |
| | | .HasColumnType("char(36)") |
| | | .HasColumnName("CreatorId"); |
| | | |
| | | b.Property<Guid?>("DeleterId") |
| | | .HasColumnType("char(36)") |
| | | .HasColumnName("DeleterId"); |
| | | |
| | | b.Property<DateTime?>("DeletionTime") |
| | | .HasColumnType("datetime(6)") |
| | | .HasColumnName("DeletionTime"); |
| | | |
| | | b.Property<int?>("DodeviceId") |
| | | .HasColumnType("int") |
| | | .HasComment("堆垛机ID"); |
| | | |
| | | b.Property<int>("Dodevicetype") |
| | | .HasColumnType("int") |
| | | .HasComment("设备类型"); |
| | | |
| | | b.Property<string>("ExtraProperties") |
| | | .HasColumnType("longtext") |
| | | .HasColumnName("ExtraProperties"); |
| | | |
| | | b.Property<bool>("IsDeleted") |
| | | .ValueGeneratedOnAdd() |
| | | .HasColumnType("tinyint(1)") |
| | | .HasDefaultValue(false) |
| | | .HasColumnName("IsDeleted"); |
| | | |
| | | b.Property<bool?>("IsDisabled") |
| | | .HasColumnType("tinyint(1)") |
| | | .HasComment("是否禁用"); |
| | | |
| | | b.Property<int?>("IsNextTask") |
| | | .HasColumnType("int") |
| | | .HasComment("下个任务是否生成成功"); |
| | | |
| | | b.Property<bool>("IsRead") |
| | | .HasColumnType("tinyint(1)") |
| | | .HasComment("WCS是否可以读取"); |
| | | |
| | | b.Property<DateTime?>("LastModificationTime") |
| | | .HasColumnType("datetime(6)") |
| | | .HasColumnName("LastModificationTime"); |
| | | |
| | | b.Property<Guid?>("LastModifierId") |
| | | .HasColumnType("char(36)") |
| | | .HasColumnName("LastModifierId"); |
| | | |
| | | b.Property<string>("MutableParam1") |
| | | .HasMaxLength(200) |
| | | .HasColumnType("varchar(200)") |
| | | .HasComment("可变变量1"); |
| | | |
| | | b.Property<string>("MutableParam2") |
| | | .HasMaxLength(200) |
| | | .HasColumnType("varchar(200)") |
| | | .HasComment("可变变量2"); |
| | | |
| | | b.Property<string>("MutableParam3") |
| | | .HasMaxLength(200) |
| | | .HasColumnType("varchar(200)") |
| | | .HasComment("可变变量3"); |
| | | |
| | | b.Property<int?>("SonTaskType") |
| | | .HasColumnType("int") |
| | | .HasComment("子任务类型"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int") |
| | | .HasComment("排序"); |
| | | |
| | | b.Property<string>("SourceOrderNo") |
| | | .HasMaxLength(50) |
| | | .HasColumnType("varchar(50)") |
| | | .HasComment("来源单据号"); |
| | | |
| | | b.Property<string>("SourcePlace") |
| | | .HasMaxLength(50) |
| | | .HasColumnType("varchar(50)") |
| | | .HasComment("起始库位"); |
| | | |
| | | b.Property<int>("TaskDodeviceStatus") |
| | | .HasColumnType("int") |
| | | .HasComment("设备任务状态"); |
| | | |
| | | b.Property<int>("TaskLevel") |
| | | .HasColumnType("int") |
| | | .HasComment("任务等级"); |
| | | |
| | | b.Property<string>("TaskNo") |
| | | .IsRequired() |
| | | .HasMaxLength(50) |
| | | .HasColumnType("varchar(50)") |
| | | .HasComment("任务号"); |
| | | |
| | | b.Property<int>("TaskStatus") |
| | | .HasColumnType("int") |
| | | .HasComment("任务状态"); |
| | | |
| | | b.Property<int>("TaskType") |
| | | .HasColumnType("int") |
| | | .HasComment("任务类型"); |
| | | |
| | | b.Property<string>("ToPlace") |
| | | .HasMaxLength(50) |
| | | .HasColumnType("varchar(50)") |
| | | .HasComment("目标库位"); |
| | | |
| | | b.HasKey("Id"); |
| | | |
| | | b.HasIndex("ContainerNo"); |
| | | |
| | | b.HasIndex("DodeviceId"); |
| | | |
| | | b.HasIndex("IsRead"); |
| | | |
| | | b.HasIndex("Sort"); |
| | | |
| | | b.HasIndex("SourceOrderNo"); |
| | | |
| | | b.HasIndex("SourcePlace"); |
| | | |
| | | b.HasIndex("TaskNo") |
| | | .IsUnique(); |
| | | |
| | | b.HasIndex("TaskStatus"); |
| | | |
| | | b.HasIndex("TaskType"); |
| | | |
| | | b.HasIndex("ToPlace"); |
| | | |
| | | b.ToTable("scms_wmstasks", (string)null); |
| | | |
| | | b.HasComment("任务表"); |
| | | }); |
| | | #pragma warning restore 612, 618 |
| | | } |
| | | } |