Fin_GroupExtraCostView.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 int CreateUserId { get; set; }
  21. public string CreateUserIdStr { get; set; }
  22. public string PriceDt { get; set; }
  23. public int IsAuditGM { get; set; }
  24. public string IsAuditGMStr { get; set; }
  25. }
  26. public class Fin_GroupExtraCostDetailView
  27. {
  28. public int Id { get; set; }
  29. public int DiId { get; set; }
  30. public string PriceName { get; set; }
  31. public decimal Price { get; set; }
  32. public int PriceCount { get; set; }
  33. public string PriceDt { get; set; }
  34. public int PriceCurrency { get; set; }
  35. public string Payee { get; set; }
  36. public int OrbitalPrivateTransfer { get; set; }
  37. public int PayDId { get; set; }
  38. public int CTDId { get; set; }
  39. public int PriceType { get; set; }
  40. public int PriceDetailType { get; set; }
  41. public decimal Coefficient { get; set; }
  42. public string Remark { get; set; }
  43. }
  44. public class Fin_GroupExtraCostViewDataCount
  45. {
  46. public int DataCount { get; set; }
  47. }
  48. public class Fin_GroupExtraCostView_List
  49. {
  50. }
  51. }