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.

76 lines
1.7 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 GetDNEntity
  9. {
  10. public string ID { get; set; }
  11. //到货单号
  12. public string DNCode { get; set; }
  13. //到货单行号
  14. public int DNLine { get; set; }
  15. //供应商代码
  16. public string VenCode { get; set; }
  17. //类型(1:到货)
  18. public int DNType { get; set; }
  19. //物料代码
  20. public string InvCode { get; set; }
  21. //数量
  22. public decimal Quantity { get; set; }
  23. //辅计量数量
  24. public decimal Amount { get; set; }
  25. //状态(1:开立,2:审核,3:关闭)
  26. public string Status { get; set; }
  27. //创建人
  28. public string CreatePerson { get; set; }
  29. //创建时间
  30. public DateTime? CreateDate { get; set; }
  31. //采购订单
  32. public string PO { get; set; }
  33. //采购订单行号
  34. public int POLine { get; set; }
  35. //送货单
  36. public string ASNCode { get; set; }
  37. //送货单行号
  38. public int ASNLine { get; set; }
  39. //自由项1
  40. public string Extension1 { get; set; }
  41. //自由项2
  42. public string Extension2 { get; set; }
  43. //自由项3
  44. public string Extension3 { get; set; }
  45. //自由项4
  46. public string Extension4 { get; set; }
  47. //自由项5
  48. public string Extension5 { get; set; }
  49. //操作时间
  50. public DateTime? dModifyDate { get; set; }
  51. //站点
  52. public string WorkPoint { get; set; }
  53. }
  54. }