using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using QMFrameWork.Data.Attributes;
namespace QMAPP.MESReport.Entity.Tables
{
///
/// 工序节拍表
/// 于子清
/// 2017-10-30
///
[DBTable(TableName = "T_SA_CELLCYCLETIME")]
public class T_SA_CELLCYCLETIME
{
///
/// 主键
///
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
public string PID { get; set; }
///
/// 工作中心编码
///
[DBColumn(ColumnName = "WORKCENTER_CODE", DataType = DbType.String)]
public string WORKCENTER_CODE { get; set; }
///
/// 设备编码
///
[DBColumn(ColumnName = "MACHINECODDE", DataType = DbType.String)]
public string MACHINECODDE { get; set; }
///
/// 工厂编码
///
[DBColumn(ColumnName = "FACTORY_CODE", DataType = DbType.String)]
public string FACTORY_CODE { get; set; }
///
/// 工序编码
///
[DBColumn(ColumnName = "WORKCELL_CODE", DataType = DbType.String)]
public string WORKCELL_CODE { get; set; }
///
/// 物料号
///
[DBColumn(ColumnName = "MATERIAL_CODE", DataType = DbType.String)]
public string MATERIAL_CODE { get; set; }
///
/// 统计日期
///
[DBColumn(ColumnName = "STATIS_DATE", DataType = DbType.String)]
public string STATIS_DATE { get; set; }
///
/// 节拍(s)
///
[DBColumn(ColumnName = "CYCLETIME", DataType = DbType.Int32)]
public string CYCLETIME { get; set; }
///
/// 创建时间
///
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
public DateTime CREATEDATE { get; set; }
///
/// 更新时间
///
[DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.DateTime)]
public DateTime UPDATEDATE { get; set; }
}
}