QueryPlanParam.cs 290 B

123456789101112
  1. namespace ProductionLineMonitor.Web.Services.LineService
  2. {
  3. /// <summary>
  4. /// 查询计划参数
  5. /// </summary>
  6. public class QueryPlanParam
  7. {
  8. public int Floor { get; set; }
  9. public int Line { get; set; }
  10. public string Date { get; set; }
  11. }
  12. }