Fin_GroupExtraCostView.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. public string Remark { get; set; }
  31. /// <summary>
  32. /// 商邀主管确认
  33. /// </summary>
  34. public string SYsupervisorConfirmStr { get; set; }
  35. }
  36. public class Fin_GroupExtraCostDetailView
  37. {
  38. public int Id { get; set; }
  39. public int DiId { get; set; }
  40. public string PriceName { get; set; }
  41. public decimal Price { get; set; }
  42. public int PriceCount { get; set; }
  43. public string PriceDt { get; set; }
  44. public int PriceCurrency { get; set; }
  45. public string Payee { get; set; }
  46. public int OrbitalPrivateTransfer { get; set; }
  47. public int PayDId { get; set; }
  48. public int CTDId { get; set; }
  49. public int PriceType { get; set; }
  50. public int PriceDetailType { get; set; }
  51. public decimal Coefficient { get; set; }
  52. public string Remark { get; set; }
  53. public int? Area { get; set; }
  54. }
  55. public class Fin_GroupExtraCostViewDataCount
  56. {
  57. public int DataCount { get; set; }
  58. }
  59. public class Fin_GroupExtraCostView_List
  60. {
  61. }
  62. public class Fin_GroupExtraCost_ExcelCountView {
  63. public int PriceType { get; set; }
  64. public int DataCount { get; set; }
  65. }
  66. public class Fin_GroupExtraCost_ExcelView
  67. {
  68. public int PriceType { get; set; }
  69. public string PriceTypeStr { get; set; }
  70. public string PriceDetailTypeStr { get; set; }
  71. public DateTime PriceDt { get; set; }
  72. public string PriceDtStr
  73. {
  74. get
  75. {
  76. return this.PriceDt.ToString("yyyy-MM-dd");
  77. }
  78. }
  79. public string PriceName { get; set; }
  80. public decimal Price { get; set; }
  81. public int PriceCount { get; set; }
  82. public string Currency { get; set; }
  83. public decimal PriceSum { get; set; }
  84. public string Remark { get; set; }
  85. }
  86. }