using System.Collections.Generic;
using System.ComponentModel;
using Core.Mes.Client.Comm.Attribute;
namespace Core.StlMes.Client.Mcp.Control.Entity
{
public class MchFinalCheckTotal :MchFinalCheckResultDEntity
{
///
/// 处置单号
///
[Description("处置单号")]
[Nullable(false)]
[DataLength(20)]
public string TreatmentNo { get; set; }
///
/// 不合项目
///
[Description("不合项目")]
[Nullable(false)]
[DataLength(20)]
public string UnPass { get; set; }
///
///
///
[Description("支数")]
[Nullable(false)]
[DataLength(20)]
public string Num { get; set; }
public List UnPassData { get; set; }
}
}