namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class CheckCompleteInput
{
///
/// 提报id
///
public string report_id { get; set; }
///
/// 合格数
///
public decimal pqty { get; set; }
///
/// 不合格数
///
public decimal rqty { get; set; }
///
/// 质检结果
///
public string check_result { get; set; }
///
/// 视觉记录
///
public List records { get; set; } = null;
}
}