纽威
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.

60 lines
1.8 KiB

3 years ago
3 years ago
3 years ago
2 years ago
3 years ago
2 years ago
3 years ago
3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. public class ICSPurchaseReceiveDoc
  8. {
  9. public string ID;//表头ID
  10. public string RCVTCode;//入库单号
  11. public string User;//操作人
  12. public DateTime MTime;//操作时间
  13. public string VenCode;//供应商编号
  14. public bool UpdateStock;//是否更新现存量
  15. public bool UpdateTodoQuantity;//是否更新待出入库数量
  16. public string WHCode;//仓库编号
  17. public string DNCode;//到货单编号
  18. public string POCode;//采购订单号
  19. public string WorkPoint;//站点
  20. public string DNRTCode;
  21. public bool Enable;
  22. public List<ICSPurchaseReceiveDocs> details = new List<ICSPurchaseReceiveDocs>();
  23. }
  24. public class ICSPurchaseReceiveDocs
  25. {
  26. public string Sequence;
  27. public string DNSequence;
  28. public string InvCode;
  29. public decimal Quantity;
  30. public decimal Amount;
  31. public string Currency;
  32. public decimal UnitPrice;
  33. public string DNDetailID;
  34. public string DNRTDetailID;
  35. public string PODetailID;
  36. public string ProjectCode;//项目号
  37. public string Version;//版本
  38. public string Brand;//厂牌
  39. public string BatchCode;//批次号
  40. public string cFree1;//自由项1
  41. public string cFree2;//自由项2
  42. public string cFree3;//自由项3
  43. public string cFree4;//自由项4
  44. public string cFree5;//自由项5
  45. public string cFree6;//自由项6
  46. public string cFree7;//自由项7
  47. public string cFree8;//自由项8
  48. public string cFree9;//自由项9
  49. public string cFree10;//自由项10
  50. }
  51. }