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.
49 lines
1.6 KiB
49 lines
1.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMFrameWork.Data.Attributes;
|
|
using QMAPP.Entity;
|
|
using System.Data;
|
|
|
|
namespace QMAPP.FJC.Entity.CellCycle
|
|
{
|
|
[DBTable(TableName = "T_SA_CELLCYCLETIME")]
|
|
public class CellCycleTime : BaseEntity
|
|
{
|
|
[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 = "CYCLETIME", DataType = DbType.Decimal)]
|
|
public decimal CYCLETIME { get; set; }
|
|
|
|
[DBColumn(ColumnName = "CYCLECOUNT", DataType = DbType.Int32)]
|
|
public int CYCLECOUNT { get; set; }
|
|
|
|
[DBColumn(ColumnName = "STATIS_DATE", DataType = DbType.DateTime)]
|
|
public DateTime STATIS_DATE { get; set; }
|
|
|
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
[DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.DateTime)]
|
|
public DateTime UPDATEDATE { get; set; }
|
|
|
|
|
|
}
|
|
}
|
|
|