using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc.Html;
using QMFrameWork.WebUI.Attribute;
using QMFrameWork.WebUI;
namespace QMAPP.FJC.Web.Models.Basic
{
public class ProcessRouteWorkCellSeqModel : QDGModel
{
public ProcessRouteWorkCellSeqModel()
{
this.pagination = false;
this.rownumbers = false;
this.Editable = true;
this.rownumbers = false;
this.url = "/ProcessRoute/GetDetailList";
}
///
/// 主键
///
[Description("主键")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 72)]
[InputType(inputType.text)]
[DGColumn(Hidden = true, PrimaryKey = true)]
public string PRWS_PID { get; set; }
///
///工艺工序主键
///
[Description("工艺工序主键")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
public string PRW_PID { get; set; }
///
///前一工序主键
///
[Description("前一工序主键")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
public string PRE_PRW_PID { get; set; }
///
/// 前一工序编码
///
[Description("前置工序")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 20)]
[InputType(inputType.combobox)]
//[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
[DGColumn(ColumnName = "PRE_WORKCELL_CODE", Sortable = true, Width = 200, DataAlign = DataAlign.left, Editor = CellEditorType.combobox, required = true)]
public string PRE_WORKCELL_CODE { get; set; }
///
/// 前一工序名称
///
[Description("前一工序名称")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 100)]
[InputType(inputType.text)]
public string PRE_WORKCELL_NAME { get; set; }
///
/// 创建用户
///
[Description("创建用户")]
public string CREATEUSR { get; set; }
///
/// 创建时间
///
[Description("创建时间")]
public DateTime CREATEDATE { get; set; }
///
/// 更新用户
///
[Description("更新用户")]
public string UPDATEUSR { get; set; }
///
/// 更新时间
///
[Description("更新时间")]
public DateTime UPDATEDATE { get; set; }
///
/// 明细数据
///
public string DetailValue { get; set; }
}
}