This commit is contained in:
2022-07-09 19:15:07 +00:00
parent f9baf2b3df
commit 38e52c9c6b
3 changed files with 76 additions and 40 deletions

View File

@@ -8,13 +8,13 @@ namespace AyaNovaQBI
/// </summary>
public class WorkOrderAccountingListItem
{
public long id { get; set; }
public long customerId { get; set; }
public string customerName { get; set; }
public string workorderStatusName { get; set; }
public long serial { get; set; }
public DateTime? serviceDate { get; set; }
public string color { get; set; }
public string projectName { get; set; }
public long Id { get; set; }
public long CustomerId { get; set; }
public string CustomerName { get; set; }
public string WorkorderStatusName { get; set; }
public long Serial { get; set; }
public DateTime? ServiceDate { get; set; }
public string Color { get; set; }
public string ProjectName { get; set; }
}
}