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.
44 lines
1.2 KiB
44 lines
1.2 KiB
4 years ago
|
using System;
|
||
|
using System.Data;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using QMAPP.Entity;
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.ShipmentMonitor
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 发运看板显示设置
|
||
|
/// 作 者:李炳海
|
||
|
/// 编写日期:2017年09月30日
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_PP_SHIPMONITORSET")]
|
||
|
public class ShipMonitorSet:BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 最迟发运时间(分钟)
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "LATESTTIMES", DataType = DbType.Int32)]
|
||
|
public int LATESTTIMES { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 最迟发运时间(分钟)
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "THEORYTIMES", DataType = DbType.Int32)]
|
||
|
public int THEORYTIMES { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 理论到厂时间(分钟)
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "WAYTIMES", DataType = DbType.Int32)]
|
||
|
public int WAYTIMES { get; set; }
|
||
|
}
|
||
|
}
|