using System;
using System.Collections.Generic;
using System.Text;
namespace Wms.Screen.Dto.ZhongTian.Response
{
public class TorStaticsInfo
{
///
/// 库中扭转不合格盘
///
public int TorNoGood { get; set; }
///
/// 库中满足时效待检测盘
///
public int TorTobe { get; set; }
///
/// 未满足时效待检测盘(今天出库检测)
///
public int TodayTorNoTobe { get; set; }
///
/// 库中未满足时效待检测盘(总数)
///
public int TorNoTobe { get; set; }
///
/// 出库中未分配机台盘数
///
public int ToroOuting { get; set; }
///
/// 扭转完成回库途中盘
///
public int ToroIning { get; set; }
///
/// 超72小时检测盘
///
public int TimeOuthw { get; set; }
}
}