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.
55 lines
1.5 KiB
55 lines
1.5 KiB
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-8
|
|
/// </summary>
|
|
[DBTable(TableName = "T_SA_EQPTCONSUME")]
|
|
public class T_SA_EQPTCONSUME
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备编码
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "EQPT_CODE", DataType = DbType.String, IsKey = true)]
|
|
public string EQPT_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂编码
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "FACTORY_CODE", DataType = DbType.String, IsKey = true)]
|
|
public string FACTORY_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 能源类型
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "ENERGY_TYPE", DataType = DbType.String, IsKey = true)]
|
|
public string ENERGY_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 耗能
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "CONSUME", DataType = DbType.String, IsKey = true)]
|
|
public string CONSUME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 统计日期
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "STATIS_DATE", DataType = DbType.String, IsKey = true)]
|
|
public string STATIS_DATE { get; set; }
|
|
|
|
}
|
|
}
|
|
|