| | |
| | | .HasDefaultValue(2) |
| | | .HasComment("æ¯å¦ä¸ºä¸»æ¯ç®¡"); |
| | | |
| | | b.Property<bool?>("IsSelfMade") |
| | | .HasColumnType("tinyint(1)") |
| | | .HasComment("æ°é"); |
| | | |
| | | b.Property<bool>("IsValid") |
| | | .HasColumnType("tinyint(1)") |
| | | .HasComment("æ¯å¦ææç©æ"); |
| | | |
| | | b.Property<DateTime?>("LastModificationTime") |
| | | .HasColumnType("datetime(6)") |
| | | .HasColumnName("LastModificationTime") |
| | |
| | | .HasColumnType("int") |
| | | .HasComment("ç©æç±»åï¼æä¸¾å¼ï¼"); |
| | | |
| | | b.Property<decimal?>("NullLength") |
| | | .HasColumnType("decimal(65,30)"); |
| | | |
| | | b.Property<int>("Num") |
| | | .HasColumnType("int") |
| | | .HasComment("æ¯å¦ææç©æ"); |
| | | |
| | | b.Property<decimal>("OuterDiameter") |
| | | .HasColumnType("decimal(18,2)") |
| | | .HasComment("å¤å¾ï¼åä½ï¼mmï¼"); |
| | |
| | | .HasColumnType("varchar(500)") |
| | | .HasComment("夿³¨"); |
| | | |
| | | b.Property<int?>("SelfNum") |
| | | .HasColumnType("int") |
| | | .HasComment("èªææ°é"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .ValueGeneratedOnAdd() |
| | | .HasColumnType("int") |