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.
62 lines
1.4 KiB
62 lines
1.4 KiB
4 years ago
|
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.09.22
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_SA_LINEDAYQTYCOUNT")]
|
||
|
public class LineQtyCondition : T_SA_LINEDAYQTYCOUNT
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 班次编码
|
||
|
/// </summary>
|
||
|
public string SHIFT_NAME { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 统计开始日期
|
||
|
/// </summary>
|
||
|
public string START_STATIS_DATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 统计开始截止日期
|
||
|
/// </summary>
|
||
|
public string END_STATIS_DATE { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 设备名称
|
||
|
/// </summary>
|
||
|
public string EQUIPMENT_NAME { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 设备名称
|
||
|
/// </summary>
|
||
|
public string MACHINENAME_SHORT { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工序类别
|
||
|
/// </summary>
|
||
|
public string WORKCELL_NAME { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 开始日期
|
||
|
/// </summary>
|
||
|
public string START_DATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 结束日期
|
||
|
/// </summary>
|
||
|
public string END_DATE { get; set; }
|
||
|
}
|
||
|
}
|