天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

63 lines
1.4 KiB

using QMAPP.MESReport.Entity.Tables;
namespace QMAPP.MESReport.Entity.LineQTY
{
/// <summary>
/// 返修率统计
/// 于子清
/// 2017-10-25
/// </summary>
public class RepairRateCountDModel : T_SA_LINEQTYCOUNT
{
/// <summary>
/// 起始日期
/// </summary>
public string START_DATE { get; set; }
/// <summary>
/// 结束日期
/// </summary>
public string END_DATE { get; set; }
///<summary>
///统计类型
///</summary>
public string TYPE_COUNT { get; set; }
/// <summary>
/// 日
/// </summary>
public string TDAY { get; set; }
/// <summary>
/// 目标返修率
/// </summary>
public string MFlV { get; set; }
/// <summary>
/// 完成数量
/// </summary>
public string COMPLETE_QTY { get; set; }
//返修结果
public string MENDRESULT { get; set; }
//返修数量
public string MENDNUMBER { get; set; }
//返修原因
public string DEFECTVALUE { get; set; }
//为了不和其它页面的零件号字段发生冲突
public string MaterialCode { get; set; }
public string MaterialName { get; set; }
//报废原因和趋势的选择
public string SelectMender { get; set; }
public string CREATEDATE { get; set; }
}
}