UpdateBlackCountReq.cs 338 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.sx
  5. {
  6. public class UpdateBlackCountReq
  7. {
  8. /// <summary>
  9. /// 1:BS40/60工字轮, 2:BS80工字轮
  10. /// </summary>
  11. public string SpoolType { get; set; }
  12. public int Count { get; set; }
  13. }
  14. }