You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
2.4 KiB

4 days ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Domain._03_Entity.SRM
  7. {
  8. public class ICSPO_PoMain
  9. {
  10. public string ID { get; set; }
  11. public string POCode { get; set; }
  12. public string PORow { get; set; }
  13. public DateTime? PODate { get; set; }
  14. public string VenCode { get; set; }
  15. public string VenName { get; set; }
  16. public string PersonCode { get; set; }
  17. public string PersonName { get; set; }
  18. public string GroupCode { get; set; }
  19. public string GroupName { get; set; }
  20. public string POType { get; set; }
  21. public string ProjectType { get; set; }
  22. public string SubjectCode { get; set; }
  23. public string CurrencyName { get; set; }
  24. public string InvCode { get; set; }
  25. public string ORDERNO { get; set; }
  26. public decimal? Price { get; set; }
  27. public decimal? PriceQuantity { get; set; }
  28. public string WHCode { get; set; }
  29. public string Status { get; set; }
  30. public string CreatePerson { get; set; }
  31. public decimal Quantity { get; set; }
  32. public decimal? INQty { get; set; }
  33. public string ISUrgent { get; set; }
  34. public string ServerModel { get; set; }
  35. public string ReleaseState { get; set; }
  36. public DateTime? PreArriveDate { get; set; }
  37. public string ArriveDate { get; set; }
  38. public string Free1 { get; set; }
  39. public int? Free2 { get; set; }
  40. public decimal? Free3 { get; set; }
  41. public decimal? Free4 { get; set; }
  42. public string DeliveryDate { get; set; }
  43. public string WorkPoint { get; set; }
  44. public DateTime? ReleaseDate { get; set; }
  45. public int VersionStatus { get; set; }
  46. public string SOCode { get; set; }
  47. public string SORow { get; set; }
  48. public string PayCode { get; set; }
  49. public string MUSER { get; set; }
  50. public string MUSERName { get; set; }
  51. public DateTime MTIME { get; set; }
  52. public string cBatch { get; set; }
  53. public string IsNew { get; set; }
  54. public string EATTRIBUTE6 { get; set; }
  55. public string EATTRIBUTE9 { get; set;}
  56. public string EATTRIBUTE29 { get; set; }
  57. public string EATTRIBUTE30 { get; set; }
  58. }
  59. }