裕隆城折扣合作@中興低碳 折扣報表
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

26 行
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. }