RevenueHourly.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using Oracle.ManagedDataAccess.Client;
  5. using System.Linq;
  6. using System.Web;
  7. using System.Data;
  8. namespace ReportWeb.Models
  9. {
  10. public class RevenueHourly
  11. {
  12. public RevenueHourly()
  13. { }
  14. public string sv_code { get; set; }
  15. public string report_date { get; set; }
  16. public long h00 { get; set; }
  17. public long h01 { get; set; }
  18. public long h02 { get; set; }
  19. public long h03 { get; set; }
  20. public long h04 { get; set; }
  21. public long h05 { get; set; }
  22. public long h06 { get; set; }
  23. public long h07 { get; set; }
  24. public long h08 { get; set; }
  25. public long h09 { get; set; }
  26. public long h10 { get; set; }
  27. public long h11 { get; set; }
  28. public long h12 { get; set; }
  29. public long h13 { get; set; }
  30. public long h14 { get; set; }
  31. public long h15 { get; set; }
  32. public long h16 { get; set; }
  33. public long h17 { get; set; }
  34. public long h18 { get; set; }
  35. public long h19 { get; set; }
  36. public long h20 { get; set; }
  37. public long h21 { get; set; }
  38. public long h22 { get; set; }
  39. public long h23 { get; set; }
  40. }
  41. }