| | |
| | | b.Property<Guid?>("CreatedUserInfoId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<int>("Deep") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<string>("Field1") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | |
| | | b.Property<string>("CityCode") |
| | | .HasColumnType("nvarchar(128)"); |
| | | |
| | | b.Property<string>("Code") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<DateTimeOffset>("CreatedTime") |
| | | .HasColumnType("datetimeoffset"); |
| | | |
| | |
| | | b.Property<string>("ProvinceCode") |
| | | .HasColumnType("nvarchar(128)"); |
| | | |
| | | b.Property<int>("ReleaseStatus") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<decimal>("ServiceFee") |
| | | .HasColumnType("decimal(18,2)"); |
| | | |
| | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<int>("Status") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<string>("TraceId") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |