Fin_GroupExtraCostView.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 string PriceTypeStr { get; set; }
  16. public string PriceStr { get; set; }
  17. public string FilePath { get; set; }
  18. public int CreateUserId { get; set; }
  19. public string CreateUserIdStr { get; set; }
  20. public string CreateTime { get; set; }
  21. public int IsAuditGM { get; set; }
  22. public string IsAuditGMStr { get; set; }
  23. }
  24. public class Fin_GroupExtraCostDetailView
  25. {
  26. public int Id { get; set; }
  27. public int DiId { get; set; }
  28. public string PriceName { get; set; }
  29. public decimal Price { get; set; }
  30. public int PriceCurrency { get; set; }
  31. public string Payee { get; set; }
  32. public int OrbitalPrivateTransfer { get; set; }
  33. public int PayDId { get; set; }
  34. public int CTDId { get; set; }
  35. public int PriceType { get; set; }
  36. public int PriceDetailType { get; set; }
  37. public decimal Coefficient { get; set; }
  38. public string Remark { get; set; }
  39. }
  40. public class Fin_GroupExtraCostViewDataCount
  41. {
  42. public int DataCount { get; set; }
  43. }
  44. public class Fin_GroupExtraCostView_List
  45. {
  46. }
  47. }