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.

70 lines
1.6 KiB

11 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ICSSoft.ERPWMS.Entity
  7. {
  8. public class GetPurchaseStockInEntity
  9. {
  10. public string ID { get; set; }
  11. //条码
  12. public string LotNo { get; set; }
  13. //送货单
  14. public string ASNCode { get; set; }
  15. //送货单行号
  16. public int ASNLine { get; set; }
  17. //到货单号
  18. public string DNCode { get; set; }
  19. //到货单行号
  20. public int DNLine { get; set; }
  21. //采购订单
  22. public string PO { get; set; }
  23. //采购订单行号
  24. public int POLine { get; set; }
  25. //物料编码
  26. public string InvCode { get; set; }
  27. //入库数量
  28. public decimal Quantity { get; set; }
  29. //入库仓库
  30. public string ToWarehouseCode { get; set; }
  31. //入库库位
  32. public string ToLocationCode { get; set; }
  33. //采购入库单号
  34. public string RcvDoc { get; set; }
  35. //采购入库单行号
  36. public int RcvDocLine { get; set; }
  37. //类型(2:收)
  38. public string TransType { get; set; }
  39. //业务类型(1:采购入库)
  40. public string BusinessCode { get; set; }
  41. //操作人
  42. public string MUSER { get; set; }
  43. //操作人名称
  44. public string MUSERName { get; set; }
  45. //操作时间
  46. public DateTime? dModifyDate { get; set; }
  47. //站点
  48. public string WorkPoint { get; set; }
  49. }
  50. }