AllocationConveyorSortRequest.cs 395 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.fj
  5. {
  6. public class AllocationConveyorSortRequest
  7. {
  8. /// <summary>
  9. /// 工字轮条码
  10. /// </summary>
  11. public string BarCode { get; set; }
  12. /// <summary>
  13. /// 扫码设备号
  14. /// </summary>
  15. public string EquNo { get; set; }
  16. }
  17. }