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.
71 lines
1.9 KiB
71 lines
1.9 KiB
4 years ago
|
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.Basic
|
||
|
{
|
||
|
[DBTable(TableName = "T_BD_CAPACITY")]
|
||
|
public class Capacity : BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 班次ID
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "SHIFT_PID", DataType = DbType.String)]
|
||
|
public string SHIFT_PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工作中心ID
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "WORKCENTER_PID", DataType = DbType.String)]
|
||
|
public string WORKCENTER_PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 产能
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "CAPACITY", DataType = DbType.Int32)]
|
||
|
public int CAPACITY { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建人
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
|
||
|
public string CREATEUSER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "CREATEDATA", DataType = DbType.DateTime)]
|
||
|
public DateTime CREATEDATA { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新人
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "UPDATEUSER", DataType = DbType.String)]
|
||
|
public string UPDATEUSER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新时间
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "UPDATEDATA", DataType = DbType.DateTime)]
|
||
|
public DateTime UPDATEDATA { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 删除标记
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "FLGDEL", DataType = DbType.String)]
|
||
|
public string FLGDEL { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|