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.

29 lines
641 B

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 ReplyPOArrivalDateEntity
  9. {
  10. //采购订单号
  11. public string POCode { get; set; }
  12. //采购订单行号
  13. public int? Sequence { get; set; }
  14. //SRM拆行
  15. public int? SubSequence { get; set; }
  16. //预计到货数量
  17. public float? Quantity { get; set; }
  18. //预计到货日期
  19. public string dReplyArriveDate { get; set; }
  20. //站点
  21. public string WorkPoint { get; set; }
  22. }
  23. }