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.
61 lines
1.7 KiB
61 lines
1.7 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Data;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
|
||
|
namespace QMAPP.MESReport.Entity.Tables
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 设备利用率分析
|
||
|
/// 于子清
|
||
|
/// 2017-11-06
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_SA_EQPTUSECOUNT")]
|
||
|
public class T_SA_EQPTUSECOUNT
|
||
|
{
|
||
|
/// <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 = "EQPT_CODE", DataType = DbType.String)]
|
||
|
public string EQPT_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 开机时间(h)
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "BOOTTIMES", DataType = DbType.String)]
|
||
|
public string BOOTTIMES { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 加工时间(h)
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "WORKTIMES", DataType = DbType.String)]
|
||
|
public string WORKTIMES { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 统计日期
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "STATIS_DATE", DataType = DbType.String)]
|
||
|
public string STATIS_DATE { get; set; }
|
||
|
}
|
||
|
}
|