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.

80 lines
1.8 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 CreateASNEntity
  9. {
  10. //表头ID
  11. public string ID { get; set; }
  12. //送货单号
  13. public string ASNCode { get; set; }
  14. //供应商编码
  15. public string VenCode { get; set; }
  16. //状态(0:开立;1:审核中;2:已审核;);默认2
  17. public string Status { get; set; }
  18. //操作人编码
  19. public string MUSER { get; set; }
  20. //操作人名称
  21. public string MUSERName { get; set; }
  22. //站点
  23. public string WorkPoint { get; set; }
  24. //操作时间
  25. public DateTime? MTIME { get; set; }
  26. //自定义字段
  27. public string EATTRIBUTE1 { get; set; }
  28. //表体对象数组
  29. public List<CreateASNDetailEntity> list { get; set; }
  30. }
  31. public class CreateASNDetailEntity
  32. {
  33. //表体ID
  34. public string ID { get; set; }
  35. //送货单号
  36. public string ASNCode { get; set; }
  37. //行号
  38. public string Sequence { get; set; }
  39. //条码
  40. public string LotNo { get; set; }
  41. //数量
  42. public decimal? Quantity { get; set; }
  43. //辅计量数量
  44. public decimal Amount { get; set; }
  45. //实际到货数量
  46. public decimal DNQuantity { get; set; }
  47. //实际到货辅计量数量
  48. public decimal DNAmount { get; set; }
  49. //操作人编码
  50. public string MUSER { get; set; }
  51. //操作人名称
  52. public string MUSERName { get; set; }
  53. //站点
  54. public string WorkPoint { get; set; }
  55. //操作时间
  56. public DateTime? MTIME { get; set; }
  57. }
  58. }