Fin_GroupExtraCostView.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. }