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.

67 lines
1.5 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 GetInspectionEntity
  9. {
  10. public string ID { get; set; }
  11. //送货单
  12. public string ASNCode { get; set; }
  13. //送货单行号
  14. public int ASNLine { get; set; }
  15. //到货单号
  16. public string DNCode { get; set; }
  17. //到货单行号
  18. public int DNLine { get; set; }
  19. //采购订单
  20. public string PO { get; set; }
  21. //采购订单行号
  22. public int POLine { get; set; }
  23. //条码
  24. public string LotNo { get; set; }
  25. //物料编码
  26. public string InvCode { get; set; }
  27. //数量
  28. public decimal Quantity { get; set; }
  29. //合格数量
  30. public decimal QualifiedQuantity { get; set; }
  31. //不合格数量
  32. public decimal UnqualifiedQuantity { get; set; }
  33. //特采数量
  34. public decimal WaiveQuantity { get; set; }
  35. //不良原因代码
  36. public string ECSCode { get; set; }
  37. //类型(1:采购)
  38. public string Type { get; set; }
  39. //操作人
  40. public string MUSER { get; set; }
  41. //操作人名称
  42. public string MUSERName { get; set; }
  43. //操作时间
  44. public DateTime? dModifyDate { get; set; }
  45. //站点
  46. public string WorkPoint { get; set; }
  47. }
  48. }