Fin_GroupExtraCostView.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. }
  27. public class Fin_GroupExtraCostDetailView
  28. {
  29. public int Id { get; set; }
  30. public int DiId { get; set; }
  31. public string PriceName { get; set; }
  32. public decimal Price { get; set; }
  33. public int PriceCount { get; set; }
  34. public string PriceDt { get; set; }
  35. public int PriceCurrency { get; set; }
  36. public string Payee { get; set; }
  37. public int OrbitalPrivateTransfer { get; set; }
  38. public int PayDId { get; set; }
  39. public int CTDId { get; set; }
  40. public int PriceType { get; set; }
  41. public int PriceDetailType { get; set; }
  42. public decimal Coefficient { get; set; }
  43. public string Remark { get; set; }
  44. }
  45. public class Fin_GroupExtraCostViewDataCount
  46. {
  47. public int DataCount { get; set; }
  48. }
  49. public class Fin_GroupExtraCostView_List
  50. {
  51. }
  52. public class Fin_GroupExtraCost_ExcelCountView {
  53. public int PriceType { get; set; }
  54. public int DataCount { get; set; }
  55. }
  56. public class Fin_GroupExtraCost_ExcelView
  57. {
  58. public int PriceType { get; set; }
  59. public string PriceTypeStr { get; set; }
  60. public string PriceDetailTypeStr { get; set; }
  61. public DateTime PriceDt { get; set; }
  62. public string PriceDtStr
  63. {
  64. get
  65. {
  66. return this.PriceDt.ToString("yyyy-MM-dd");
  67. }
  68. }
  69. public string PriceName { get; set; }
  70. public decimal Price { get; set; }
  71. public int PriceCount { get; set; }
  72. public string Currency { get; set; }
  73. public decimal PriceSum { get; set; }
  74. public string Remark { get; set; }
  75. }
  76. }