| | |
| | | .HasComment("操作时间"); |
| | | |
| | | b.Property<string>("OrderNo") |
| | | .IsRequired() |
| | | .HasMaxLength(50) |
| | | .HasColumnType("varchar(50)") |
| | | .HasComment("单据编号"); |
| | |
| | | .HasDefaultValue(false) |
| | | .HasColumnName("IsDeleted"); |
| | | |
| | | b.Property<bool?>("IsDisabled") |
| | | b.Property<bool>("IsDisabled") |
| | | .ValueGeneratedOnAdd() |
| | | .HasColumnType("tinyint(1)") |
| | | .HasDefaultValue(false) |
| | | .HasComment("是否禁用"); |
| | | |
| | | b.Property<int>("Islock") |
| | |
| | | .HasColumnType("varchar(200)") |
| | | .HasComment("可变变量3"); |
| | | |
| | | b.Property<int>("PlcTaskId") |
| | | .ValueGeneratedOnAdd() |
| | | .HasColumnType("int") |
| | | .HasDefaultValue(0) |
| | | .HasComment("任务状态"); |
| | | |
| | | b.Property<int?>("SonTaskType") |
| | | .HasColumnType("int") |
| | | .HasComment("子任务类型"); |