Fin_GroupExtraCostView.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.ViewModels.Financial
  7. {
  8. public class Fin_GroupExtraCostView
  9. {
  10. public int RowNumber { get; set; }
  11. public int Id { get; set; }
  12. public int DiId { get; set; }
  13. public string PriceName { get; set; }
  14. public int PriceType { get; set; }
  15. public int PriceDetailType { get; set; }
  16. public string PriceTypeStr { get; set; }
  17. public string Price { get; set; }
  18. public int PriceCount { get; set; }
  19. public string PriceStr { get; set; }
  20. public string PriceSumStr { get; set; }
  21. public int CreateUserId { get; set; }
  22. public string CreateUserIdStr { get; set; }
  23. public string PriceDt { get; set; }
  24. public int IsAuditGM { get; set; }
  25. public string IsAuditGMStr { get; set; }
  26. public int ManagerConfirm { get; set; }
  27. public int SupervisorConfirm { get; set; }
  28. public string ManagerConfirmStr { get; set; }
  29. public string SupervisorConfirmStr { get; set; }
  30. }
  31. public class Fin_GroupExtraCostDetailView
  32. {
  33. public int Id { get; set; }
  34. public int DiId { get; set; }
  35. public string PriceName { get; set; }
  36. public decimal Price { get; set; }
  37. public int PriceCount { get; set; }
  38. public string PriceDt { get; set; }
  39. public int PriceCurrency { get; set; }
  40. public string Payee { get; set; }
  41. public int OrbitalPrivateTransfer { get; set; }
  42. public int PayDId { get; set; }
  43. public int CTDId { get; set; }
  44. public int PriceType { get; set; }
  45. public int PriceDetailType { get; set; }
  46. public decimal Coefficient { get; set; }
  47. public string Remark { get; set; }
  48. public int? Area { get; set; }
  49. }
  50. public class Fin_GroupExtraCostViewDataCount
  51. {
  52. public int DataCount { get; set; }
  53. }
  54. public class Fin_GroupExtraCostView_List
  55. {
  56. }
  57. public class Fin_GroupExtraCost_ExcelCountView {
  58. public int PriceType { get; set; }
  59. public int DataCount { get; set; }
  60. }
  61. public class Fin_GroupExtraCost_ExcelView
  62. {
  63. public int PriceType { get; set; }
  64. public string PriceTypeStr { get; set; }
  65. public string PriceDetailTypeStr { get; set; }
  66. public DateTime PriceDt { get; set; }
  67. public string PriceDtStr
  68. {
  69. get
  70. {
  71. return this.PriceDt.ToString("yyyy-MM-dd");
  72. }
  73. }
  74. public string PriceName { get; set; }
  75. public decimal Price { get; set; }
  76. public int PriceCount { get; set; }
  77. public string Currency { get; set; }
  78. public decimal PriceSum { get; set; }
  79. public string Remark { get; set; }
  80. }
  81. }