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
811 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ICSSoft.Entity
  7. {
  8. public class HoldMaterialModel
  9. {
  10. public string TransCode { set; get; }
  11. public string TransSequence { set; get; }
  12. public string UserCode { set; get; }
  13. public string UserName { set; get; }
  14. public string MTime { set; get; }
  15. public string WorkPoint { set; get; }
  16. public List<HoldMaterialDetail> detail { set; get; }
  17. }
  18. public class HoldMaterialDetail
  19. {
  20. public string LotNo { set; get; }
  21. public string InvCode { set; get; }
  22. public string WarehouseCode { set; get; }
  23. public string LocationCode { set; get; }
  24. public string Quantity { set; get; }
  25. }
  26. }