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

63 lines
2.3 KiB

3 years ago
3 years ago
2 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 ICSTransferDoc
  8. {
  9. public string ID { get; set; }//ID
  10. public string User { get; set; }//用户
  11. public DateTime MTime { get; set; }//时间
  12. public string WorkPoint { get; set; }
  13. public bool UpdateStock { get; set; }
  14. public bool UpdateTodoQuantity { get; set; }//是否更新库存
  15. }
  16. public class ICSTransfer
  17. {
  18. public string FromDepCode { get; set; }//调出部门编码
  19. public string FromWHCode { get; set; }//调出仓库编码
  20. public string ToDepCode { get; set; }//调入部门编码
  21. public string ToWHCode { get; set; }//调入仓库编码
  22. public string TACode { get; set; }//调拨申请单号
  23. public bool UpdateTodoQuantity { get; set; }//是否更新库存
  24. public string User { get; set; }//操作人
  25. public string WorkPoint { get; set; } //站点
  26. public bool UpdateStock { get; set; }
  27. public DateTime MTime { get; set; }//操作时间
  28. public List<ICSTransfers> details = new List<ICSTransfers>();
  29. }
  30. public class ICSTransfers
  31. {
  32. public string Sequence { get; set; }//行号
  33. public string InvCode { get; set; }//料品编码
  34. public decimal Quantity { get; set; }//数量
  35. public decimal Amount { get; set; }//辅计量数量
  36. public string TADetailID { get; set; }//调拨申请单表体ID
  37. public string ProjectCode { get; set; }//项目号
  38. public string Version { get; set; }//版本
  39. public string Brand { get; set; }//厂牌
  40. public string BatchCode { get; set; }//批次号
  41. public string cFree1 { get; set; }//自由项1
  42. public string cFree2 { get; set; }//自由项2
  43. public string cFree3 { get; set; }//自由项3
  44. public string cFree4 { get; set; }//自由项4
  45. public string cFree5 { get; set; }//自由项5
  46. public string cFree6 { get; set; }//自由项6
  47. public string cFree7 { get; set; }//自由项7
  48. public string cFree8 { get; set; }//自由项8
  49. public string cFree9 { get; set; }//自由项9
  50. public string cFree10 { get; set; }//自由项10
  51. }
  52. }