天津投入产出系统后端
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.
 
 
 
 
 
 

104 lines
3.1 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.MD.Web.Models
{
/// <summary>
/// 模块名称:工序顺序
/// 作 者:郭兆福
/// 编写日期:2017年05月19日
/// </summary
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 PID { get; set; }
///<summary>
///工艺路线编码
///</summary>
[Description("工艺路线编码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
[InputType(inputType.text)]
public string ROUTE_CODE { get; set; }
///<summary>
///工序编码
///</summary>
[Description("工序编码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
[InputType(inputType.text)]
public string WORKCELL_CODE { get; set; }
///<summary>
///工艺版本
///</summary>
[Description("工艺版本")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
[InputType(inputType.text)]
public string VER_NUM { get; set; }
/// <summary>
/// 前一工序编码
/// </summary>
[Description("前置工序")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 20)]
[InputType(inputType.combobox)]
[DGColumn(ColumnName = "PRE_WORKCELL_CODE", Width = 200, DataAlign = DataAlign.left, Editor = CellEditorType.combobox, required = true)]
public string PRE_WORKCELL_CODE { get; set; }
/// <summary>
/// 前一工序名称
/// </summary>
[Description("前一工序名称")]
public string PRE_WORKCELL_NAME { get; set; }
/// <summary>
/// 创建用户
/// </summary>
[Description("创建用户")]
public string CREATEUSER { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Description("创建时间")]
public DateTime CREATEDATE { get; set; }
/// <summary>
/// 更新用户
/// </summary>
[Description("更新用户")]
public string UPDATEUSER { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[Description("更新时间")]
public DateTime UPDATEDATE { get; set; }
/// <summary>
/// 明细数据
/// </summary>
public string DetailValue { get; set; }
}
}