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.
169 lines
5.9 KiB
169 lines
5.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 ProcessRouteWorkCellModel : QDGModel
|
|
{
|
|
public ProcessRouteWorkCellSeqModel workCellSeqModel { get; set; }
|
|
|
|
public ProcessRouteWorkCellModel()
|
|
{
|
|
workCellSeqModel = new ProcessRouteWorkCellSeqModel();
|
|
}
|
|
|
|
///<summary>
|
|
///工艺工序主键
|
|
///</summary>
|
|
[Description("工艺工序主键")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
|
|
#region 工艺路线
|
|
///<summary>
|
|
///工艺路线主键
|
|
///</summary>
|
|
[Description("工艺路线主键")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.text)]
|
|
public string ROUTE_PID { get; set; }
|
|
/////<summary>
|
|
/////工艺路线编码
|
|
/////</summary>
|
|
//[Description("工艺路线编码")]
|
|
//[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
//public string ROUTE_CODE { get; set; }
|
|
/////<summary>
|
|
/////工艺路线名称
|
|
/////</summary>
|
|
//[Description("工艺路线名称")]
|
|
//[HTMLInput(UpdateRead = false, required = true, MaxLength = 36, JsonUtl = "/Dict/GetProcessInfoComboxSource")]
|
|
//[InputType(inputType.text)]
|
|
//[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
//public string ROUTE_NAME { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region 工序
|
|
///<summary>
|
|
///工序主键
|
|
///</summary>
|
|
[Description("工序名称")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 36, JsonUtl = "/Dict/GetAllWorkCellBasicComboxSource")]
|
|
[InputType(inputType.combobox)]
|
|
public string WORKCELL_PID { get; set; }
|
|
|
|
/////<summary>
|
|
/////工序编码
|
|
/////</summary>
|
|
//[Description("工序编码")]
|
|
//[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
//public string WORKCELL_CODE { get; set; }
|
|
///<summary>
|
|
///工序名称
|
|
///</summary>
|
|
[Description("工序名称")]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string WORKCELL_NAME { get; set; }
|
|
|
|
#endregion
|
|
|
|
///<summary>
|
|
///反冲位置
|
|
///</summary>
|
|
[Description("反冲位置")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 1)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string BACKFLUSH { get; set; }
|
|
|
|
///<summary>
|
|
///文本
|
|
///</summary>
|
|
[Description("文本")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 200, Height = 30, Width = 400)]
|
|
[InputType(inputType.textArea)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string REMARK { get; set; }
|
|
|
|
///<summary>
|
|
///作业规范
|
|
///</summary>
|
|
[Description("作业规范")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 200, Height = 30, Width = 400)]
|
|
[InputType(inputType.textArea)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string OPT_STANDARD { get; set; }
|
|
|
|
///<summary>
|
|
///前置工序
|
|
///</summary>
|
|
[Description("前置工序")]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 220, DataAlign = DataAlign.left)]
|
|
public string PARWORKCELLCODE { get; set; }
|
|
|
|
///<summary>
|
|
///删除标识
|
|
///</summary>
|
|
[Description("删除标识")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
|
|
[InputType(inputType.hidden)]
|
|
public string FLAGDEL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建用户
|
|
/// </summary>
|
|
[Description("创建用户")]
|
|
public string CREATEUSR { get; set; }
|
|
/// <summary>
|
|
/// 创建用户
|
|
/// </summary>
|
|
[Description("创建用户")]
|
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string CREATEUSERNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Description("创建时间")]
|
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
|
[InputType(inputType.hidden)]
|
|
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新用户
|
|
/// </summary>
|
|
[Description("更新用户")]
|
|
public string UPDATEUSR { get; set; }
|
|
/// <summary>
|
|
/// 更新用户
|
|
/// </summary>
|
|
[Description("更新用户")]
|
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string UPDATEUSERNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[Description("更新时间")]
|
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
|
[InputType(inputType.hidden)]
|
|
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
|
|
public DateTime UPDATEDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 明细数据
|
|
/// </summary>
|
|
public string DetailValue { get; set; }
|
|
|
|
}
|
|
}
|