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.
68 lines
1.5 KiB
68 lines
1.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
using QMFrameWork.Data.Attributes;
|
|
using QMAPP.MESReport.Entity.Tables;
|
|
|
|
namespace QMAPP.MESReport.Entity.LineQTY
|
|
{
|
|
/// <summary>
|
|
/// 生产完成率分析
|
|
/// 于子清
|
|
/// 2017-10-20
|
|
/// </summary>
|
|
public class QTYCompletionRateDModel : T_SA_LINEQTYCOUNT
|
|
{
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
public string START_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
public string END_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 天
|
|
/// </summary>
|
|
public string TDAY { get; set; }
|
|
|
|
///<summary>
|
|
/// 统计类型
|
|
///</summary>
|
|
public string TYPE_COUNT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 完成率
|
|
/// </summary>
|
|
public string WLv { get; set; }
|
|
|
|
/// <summary>
|
|
/// 完成数量
|
|
/// </summary>
|
|
public string COMPLETE_QTY { get; set; }
|
|
/// <summary>
|
|
/// 返修率
|
|
/// </summary>
|
|
public double REWORK_RATE
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
//返修结果
|
|
public string MENDRESULT { get; set; }
|
|
|
|
///<summary>
|
|
///工艺路线
|
|
///</summary>
|
|
public string ROUTE_CODE { get; set; }
|
|
|
|
public string WORKCENTER_NAME { get; set; }
|
|
|
|
public string MaterialCode { get; set; }
|
|
}
|
|
}
|
|
|