| | |
| | | b.Property<int>("Access") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<string>("Account") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<string>("AccountBookId") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | |
| | | |
| | | b.Property<bool>("IsDeleted") |
| | | .HasColumnType("bit"); |
| | | |
| | | b.Property<string>("MerchantId") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<string>("PersonalProductCode") |
| | | .HasColumnType("nvarchar(max)"); |
| | |
| | | b.Property<string>("RealFailMessage") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<DateTime?>("RealInProcessStartTime") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<int>("RealStatus") |
| | | .HasColumnType("int"); |
| | | |
| | |
| | | b.Property<decimal>("Amount") |
| | | .HasColumnType("decimal(18,2)"); |
| | | |
| | | b.Property<DateTime?>("ArrivalTimeEnd") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<decimal>("Balance") |
| | | .HasColumnType("decimal(18,2)"); |
| | | |
| | |
| | | b.Property<Guid?>("EnterpriseWalletTransactionId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<string>("ErrorCode") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<string>("FailReason") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<bool>("IsDeleted") |
| | | .HasColumnType("bit"); |
| | | |