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.
41 lines
1.1 KiB
41 lines
1.1 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>
|
|
/// 班次表
|
|
/// </summary>
|
|
[DBTable(TableName = "T_QT_SHIFT")]
|
|
public class T_QT_SHIFT
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 班次编码
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "SHIFT_CODE", DataType = DbType.String)]
|
|
public string SHIFT_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 班次名
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "SHIFT_NAME", DataType = DbType.String)]
|
|
public string SHIFT_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂编号
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "FACTORY_CODE", DataType = DbType.String)]
|
|
public string FACTORY_CODE { get; set; }
|
|
|
|
}
|
|
}
|
|
|