|
|
@ -16,24 +16,24 @@ public static class WmsoutmDbContextModelCreatingExtensions |
|
|
|
b.ConfigureByConvention(); |
|
|
|
|
|
|
|
//Properties
|
|
|
|
b.Property(q => q.wmsoutm_nbr).HasMaxLength(12); |
|
|
|
b.Property(q => q.wmsoutm_type).HasMaxLength(5); |
|
|
|
b.Property(q => q.wmsoutm_dt_w).HasMaxLength(20); |
|
|
|
b.Property(q => q.wmsoutm_stat).HasMaxLength(1); |
|
|
|
b.Property(q => q.wmsoutm_tyrp_dt).HasMaxLength(20); |
|
|
|
b.Property(q => q.wmsoutm_user).HasPrecision(6); |
|
|
|
b.Property(q => q.wmsoutm_dept).HasMaxLength(10); |
|
|
|
b.Property(q => q.wmsoutm_date).HasMaxLength(8); |
|
|
|
b.Property(q => q.wmsoutm_cust).HasMaxLength(6); |
|
|
|
b.Property(q => q.wmsoutm_shm_nbr).HasMaxLength(12); |
|
|
|
b.Property(q => q.wmsoutm_cust_loc).HasMaxLength(10); |
|
|
|
b.Property(q => q.wmsoutm_stock_stat).HasMaxLength(1); |
|
|
|
b.Property(q => q.wmsoutm_open_part).HasMaxLength(20); |
|
|
|
b.Property(q => q.wmsoutm_open_loc).HasMaxLength(10); |
|
|
|
b.Property(q => q.wmsoutm_nbr).HasColumnType("char").HasMaxLength(12); |
|
|
|
b.Property(q => q.wmsoutm_type).HasColumnType("char").HasMaxLength(6); |
|
|
|
b.Property(q => q.wmsoutm_dt_w).HasColumnType("char").HasMaxLength(20); |
|
|
|
b.Property(q => q.wmsoutm_stat).HasColumnType("char").HasMaxLength(1); |
|
|
|
b.Property(q => q.wmsoutm_tyrp_dt).HasColumnType("char").HasMaxLength(20); |
|
|
|
b.Property(q => q.wmsoutm_tyrp_k).HasColumnType("char").HasMaxLength(1); |
|
|
|
b.Property(q => q.wmsoutm_id).HasPrecision(20, 0); |
|
|
|
b.Property(q => q.wmsoutm_user).HasColumnType("char").HasMaxLength(6); |
|
|
|
b.Property(q => q.wmsoutm_dept).HasColumnType("char").HasMaxLength(10); |
|
|
|
b.Property(q => q.wmsoutm_date).HasColumnType("char").HasMaxLength(8); |
|
|
|
b.Property(q => q.wmsoutm_cust).HasColumnType("char").HasMaxLength(10); |
|
|
|
b.Property(q => q.wmsoutm_shm_nbr).HasColumnType("char").HasMaxLength(12); |
|
|
|
b.Property(q => q.wmsoutm_cust_loc).HasColumnType("char").HasMaxLength(10); |
|
|
|
b.Property(q => q.wmsoutm_stock_stat).HasColumnType("char").HasMaxLength(1); |
|
|
|
b.Property(q => q.wmsoutm_open_part).HasColumnType("char").HasMaxLength(20); |
|
|
|
b.Property(q => q.wmsoutm_open_loc).HasColumnType("char").HasMaxLength(10); |
|
|
|
b.Property(q => q.wmsoutm_open_hours).HasPrecision(10, 2); |
|
|
|
b.Property(q => q.wmsoutm_tyrp_k).HasMaxLength(1); |
|
|
|
b.Property(q => q.wmsoutm_id).HasPrecision(20); |
|
|
|
b.Property(q => q.wmsoutm_open_qt).HasPrecision(10, 2); |
|
|
|
b.Property(q => q.wmsoutm_open_qty).HasPrecision(10, 2); |
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
@ -47,13 +47,13 @@ public static class WmsoutmDbContextModelCreatingExtensions |
|
|
|
b.ConfigureByConvention(); |
|
|
|
|
|
|
|
//Properties
|
|
|
|
b.Property(e => e.Id).ValueGeneratedOnAdd().UseIdentityColumn().HasColumnName("wms_id").HasPrecision(20); |
|
|
|
b.Property(q => q.wmsoutd_nbr).HasMaxLength(12); |
|
|
|
b.Property(q => q.wmsoutd_part).HasMaxLength(20); |
|
|
|
b.Property(q => q.wmsoutd_loc).HasMaxLength(10); |
|
|
|
b.Property(e => e.Id).ValueGeneratedOnAdd().UseIdentityColumn().HasColumnName("wmsoutd_id").HasPrecision(20); |
|
|
|
b.Property(q => q.wmsoutd_nbr).HasColumnType("char").HasMaxLength(12); |
|
|
|
b.Property(q => q.wmsoutd_part).HasColumnType("char").HasMaxLength(20); |
|
|
|
b.Property(q => q.wmsoutd_loc).HasColumnType("char").HasMaxLength(10); |
|
|
|
b.Property(q => q.wmsoutd_qty).HasPrecision(8, 2); |
|
|
|
b.Property(q => q.wmsoutd_bcm_code).HasPrecision(5); |
|
|
|
b.Property(q => q.wmsoutd_projt_id).HasMaxLength(20); |
|
|
|
b.Property(q => q.wmsoutd_bcm_code).HasColumnType("char").HasMaxLength(5); |
|
|
|
b.Property(q => q.wmsoutd_projt_id).HasColumnType("char").HasMaxLength(20); |
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|