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.
55 lines
1.2 KiB
55 lines
1.2 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
|
|
{
|
|
public class ProduceCycleTimeDModel : T_SA_CELLCYCLETIME
|
|
{
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
public string START_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
public string END_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 节拍(s)
|
|
/// </summary>
|
|
public string val { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生产数
|
|
/// </summary>
|
|
public string QTY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合格数
|
|
/// </summary>
|
|
public string OK_QTY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 不合格数
|
|
/// </summary>
|
|
public string NOK_QTY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 班次
|
|
/// </summary>
|
|
public string SHIFT_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工序名称
|
|
/// </summary>
|
|
public string WORKCELL_NAME { get; set; }
|
|
|
|
|
|
}
|
|
}
|
|
|