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.
95 lines
2.9 KiB
95 lines
2.9 KiB
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";
|
|
}
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Description("主键")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 72)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string PRWS_PID { get; set; }
|
|
|
|
///<summary>
|
|
///工艺工序主键
|
|
///</summary>
|
|
[Description("工艺工序主键")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.text)]
|
|
public string PRW_PID { get; set; }
|
|
|
|
///<summary>
|
|
///前一工序主键
|
|
///</summary>
|
|
[Description("前一工序主键")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.text)]
|
|
public string PRE_PRW_PID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 前一工序编码
|
|
/// </summary>
|
|
[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; }
|
|
|
|
/// <summary>
|
|
/// 前一工序名称
|
|
/// </summary>
|
|
[Description("前一工序名称")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 100)]
|
|
[InputType(inputType.text)]
|
|
public string PRE_WORKCELL_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建用户
|
|
/// </summary>
|
|
[Description("创建用户")]
|
|
public string CREATEUSR { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Description("创建时间")]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 更新用户
|
|
/// </summary>
|
|
[Description("更新用户")]
|
|
public string UPDATEUSR { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[Description("更新时间")]
|
|
public DateTime UPDATEDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 明细数据
|
|
/// </summary>
|
|
public string DetailValue { get; set; }
|
|
}
|
|
}
|