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

46 lines
1.5 KiB

3 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 ICSOutsourcingIssueDoc
  8. {
  9. public string IssueCode;//委外出库单号
  10. public string User;//操作人
  11. public DateTime MTime;//操作时间
  12. public string DepCode;//部门编号
  13. public string WHCode;//仓库编号
  14. public bool UpdateStock;
  15. public string WorkPoint;//站点
  16. public string SourceType;//单据类型
  17. public string SourceCode;//来源单据号
  18. public string ID;
  19. public List<ICSOutsourcingIssueDocs> details = new List<ICSOutsourcingIssueDocs>();
  20. }
  21. public class ICSOutsourcingIssueDocs
  22. {
  23. public string Sequence;//行号
  24. public string InvCode;//物料编码
  25. public decimal Quantity;//数量
  26. public decimal Amount;//辅计数量
  27. public string SourceDetailID;//来源单据表体ID
  28. public string ProjectCode;//项目号
  29. public string Version;//版本
  30. public string Brand;//厂牌
  31. public string BatchCode;//批次号
  32. public string cFree1;//自由项1
  33. public string cFree2;//自由项2
  34. public string cFree3;//自由项3
  35. public string cFree4;//自由项4
  36. public string cFree5;//自由项5
  37. public string cFree6;//自由项6
  38. public string cFree7;//自由项7
  39. public string cFree8;//自由项8
  40. public string cFree9;//自由项9
  41. public string cFree10;//自由项10
  42. }
  43. }