纽威
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.

33 lines
804 B

3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. /// <summary>
  8. /// 获取源头单据信息
  9. /// </summary>
  10. public class WMSSourceDocumentModel
  11. {
  12. /// <summary>
  13. /// 源头单号
  14. /// </summary>
  15. public string TransCode { get; set; }
  16. /// <summary>
  17. /// 单据类型(数据库名称中文)
  18. /// </summary>
  19. public string TransType { get; set; }
  20. /// <summary>
  21. /// 站点
  22. /// </summary>
  23. public string WorkPoint { get; set; }
  24. //public enum Type
  25. //{
  26. // ICSASNDetail = 0,//送货单子表
  27. // ICSOASNDetail = 1,//委外送货单子表
  28. // ICSTransfer = 2//调拨单
  29. //}
  30. }
  31. }