CalculationValue.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace iBemsDataService.Controllers.Bems.Common
  6. {
  7. public class CalculationResult
  8. {
  9. public DateTime DateTime { get; set; }
  10. public double Value { get; set; }
  11. };
  12. public class CalculationValue
  13. {
  14. public CalculationValue()
  15. {
  16. }
  17. public DateTime DateTime { get; set; }
  18. public double Value { get; set; }
  19. };
  20. public class CalculationValueBudget
  21. {
  22. public CalculationValueBudget()
  23. {
  24. }
  25. public DateTime DateTime { get; set; }
  26. public double Value { get; set; }
  27. public double Value2 { get; set; }
  28. };
  29. public class CalculationValueSType
  30. {
  31. public CalculationValueSType()
  32. {
  33. }
  34. public DateTime DateTime { get; set; }
  35. public double Value { get; set; }
  36. public int ServiceType { get; set; }
  37. };
  38. public class FmsHouseStockEx
  39. {
  40. public FmsHouseStockEx()
  41. {
  42. }
  43. public string HouseName { get; set; }
  44. public string MName { get; set; }
  45. public int MaterialId { get; set; }
  46. public string MaterialCode { get; set; }
  47. public int StockCnt { get; set; }
  48. };
  49. }