GetTunnelEmptyConResponse.cs 377 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.response.hj
  5. {
  6. public class GetTunnelEmptyConResponse
  7. {
  8. /// <summary>
  9. /// 巷道
  10. /// </summary>
  11. public int Tunnel { get; set; }
  12. /// <summary>
  13. /// 空轮数量
  14. /// </summary>
  15. public int Count { get; set; }
  16. }
  17. }