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.
79 lines
2.7 KiB
79 lines
2.7 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
using QMFrameWork.WebUI.Attribute;
|
||
|
using System.Web.Mvc.Html;
|
||
|
using QMFrameWork.WebUI;
|
||
|
|
||
|
namespace QMAPP.FJC.Web.Models.Basic
|
||
|
{
|
||
|
public class CapacityModel : QDGModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[Description("主键")]
|
||
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 班次ID
|
||
|
/// </summary>
|
||
|
[Description("班次")]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, Editor = CellEditorType.combobox, DataAlign = DataAlign.center, required = true)]
|
||
|
public string SHIFT_PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工作中心
|
||
|
/// </summary>
|
||
|
[Description("工作中心")]
|
||
|
[DGColumn(frozenColumns = false, Hidden = true, Sortable = true, Width = 100, DataAlign = DataAlign.center, required = true)]
|
||
|
public string WORKCENTER_PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 产能
|
||
|
/// </summary>
|
||
|
[Description("产能")]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, Editor = CellEditorType.numberbox, DataAlign = DataAlign.center, required = true)]
|
||
|
public int CAPACITY { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建用户
|
||
|
/// </summary>
|
||
|
[Description("创建用户")]
|
||
|
[DGColumn(frozenColumns = false, Hidden = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string CREATEUSER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
[Description("创建时间")]
|
||
|
[DGColumn(frozenColumns = false, Hidden = true, Sortable = true, Width = 100, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd")]
|
||
|
public DateTime CREATEDATA { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新用户
|
||
|
/// </summary>
|
||
|
[Description("更新用户")]
|
||
|
[DGColumn(frozenColumns = false, Hidden = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string UPDATEUSER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新时间
|
||
|
/// </summary>
|
||
|
[Description("更新时间")]
|
||
|
[DGColumn(frozenColumns = false, Hidden = true, Sortable = true, Width = 100, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd")]
|
||
|
public DateTime UPDATEDATA { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 删除标记
|
||
|
/// </summary>
|
||
|
[Description("删除标记")]
|
||
|
[DGColumn(frozenColumns = false, Hidden = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string FLGDEL { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|