裕隆城折扣合作@中興低碳 折扣報表
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
897B

  1. namespace CouponReport.Models.CouponMiddleware;
  2. public class CouponReportViewModel
  3. {
  4. public DateTime? StartDate { get; set; }
  5. public DateTime? EndDate { get; set; }
  6. public List<CouponReportItem> ReportItems { get; set; } = new List<CouponReportItem>();
  7. }
  8. public class CouponReportItem
  9. {
  10. public int RowNumber { get; set; }
  11. public string? TenantCode { get; set; }
  12. public string? CarNumber { get; set; }
  13. public DateTime? InvoiceDate { get; set; }
  14. public string? InvoiceNumber { get; set; }
  15. public decimal? InvoiceAmount { get; set; }
  16. public string? DiscountUnit { get; set; }
  17. public decimal? DiscountAmount { get; set; }
  18. public DateTime? DiscountTime { get; set; }
  19. public DateTime? EnterTime { get; set; }
  20. public DateTime? ExitTime { get; set; }
  21. public decimal? ParkingAmount { get; set; }
  22. public decimal? ClaimAmount { get; set; }
  23. }