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.
106 lines
3.0 KiB
106 lines
3.0 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.Entity;
|
||
|
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.SA
|
||
|
{
|
||
|
/// </summary>
|
||
|
/// 模块名称:工序生产数量
|
||
|
/// 作 者:张鹏
|
||
|
/// 编写日期:2017年12月11日
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_SA_WORKCELLQTYCOUNT")]
|
||
|
public class WorkcellQtyCount : BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工作中心编码
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "WORKCENTER_CODE", DataType = DbType.String)]
|
||
|
public string WORKCENTER_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工厂编码
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "FACTORY_CODE", DataType = DbType.String)]
|
||
|
public string FACTORY_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 设备编码
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "EQUIPMENT_CODE", DataType = DbType.String)]
|
||
|
public string EQUIPMENT_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工序编码
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "WORKCELL_CODE", DataType = DbType.String)]
|
||
|
public string WORKCELL_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "MATRIAL_CODE", DataType = DbType.String)]
|
||
|
public string MATRIAL_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 班次编码
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "SHIFT_CODE", DataType = DbType.String)]
|
||
|
public string SHIFT_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 统计日期
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "STATIS_DATE", DataType = DbType.DateTime)]
|
||
|
public DateTime STATIS_DATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 生产数量
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "QTY", DataType = DbType.Int32)]
|
||
|
public int QTY { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 合格数量
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "OK_QTY", DataType = DbType.Int32)]
|
||
|
public int OK_QTY { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 不合格数
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "NOK_QTY", DataType = DbType.Int32)]
|
||
|
public int NOK_QTY { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 返修数
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "REWORK_QTY", DataType = DbType.Int32)]
|
||
|
public int REWORK_QTY { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建日期
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
|
||
|
public DateTime CREATEDATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新日期
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.DateTime)]
|
||
|
public DateTime UPDATEDATE { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|