docker sql, migrations

This commit is contained in:
2026-01-11 23:18:45 -08:00
parent a57e60beb8
commit 27d401aa63
5 changed files with 613 additions and 1 deletions

View File

@@ -13,14 +13,18 @@ public class TDSPriceAvailability
public required string PartnerCode { get; set; }
public string? RecordId { get; set; }
[Display(Name = "Mfg PartNo")]
[MaxLength(60)]
public required string MfgPartNo { get; set; }
[Display(Name = "Vendor PartNo")]
[MaxLength(80)]
public required string VendorPartNo { get; set; }
public string? VendorSKUNo { get; set; }
public string? StatusCode { get; set; }
[Display(Name = "Product Description")]
[MaxLength(80)]
public string? PartDescription { get; set; }
[Display(Name = "Mfg Name")]
[MaxLength(30)]
public string? MfgName { get; set; }
[Display(Name = "Total Quantity")]
public int? TotalQtyOnHand { get; set; }