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.
155 lines
5.1 KiB
155 lines
5.1 KiB
4 years ago
|
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月12日
|
||
|
/// </summary>
|
||
|
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; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工厂
|
||
|
/// </summary>
|
||
|
[Description("工厂")]
|
||
|
[HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 15, Width = 244)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
public string FACTORY_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工厂
|
||
|
/// </summary>
|
||
|
[Description("工厂")]
|
||
|
[DGColumn(Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
||
|
public string FACTORY_NAME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///工序名称
|
||
|
///</summary>
|
||
|
[Description("工序名称")]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 120, DataAlign = DataAlign.left)]
|
||
|
public string WORKCELL_NAME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///工序编码
|
||
|
///</summary>
|
||
|
[Description("工序编码")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 200, JsonUtl = "/Dict/GetALLWorkCellComboxSource")]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 90, DataAlign = DataAlign.left)]
|
||
|
public string WORKCELL_CODE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///前置工序编码
|
||
|
///</summary>
|
||
|
[Description("前置工序")]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.left)]
|
||
|
public string PRE_WORKCELL_CODE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///工艺路线编码
|
||
|
///</summary>
|
||
|
[Description("工艺路线")]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 80, DataAlign = DataAlign.left)]
|
||
|
public string ROUTE_CODE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///质检标记
|
||
|
///</summary>
|
||
|
[Description("质检标记")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1, Width = 200, JsonUtl = "/Dict/GetFixedComboxSource?kind=QcFlag&WithEmpty=false")]
|
||
|
[InputType(inputType.combobox)]
|
||
|
public string FLAG_QC { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///工艺版本
|
||
|
///</summary>
|
||
|
[Description("工艺版本")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 200)]
|
||
|
[InputType(inputType.text)]
|
||
|
//[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string VER_NUM { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///质检标记名称
|
||
|
///</summary>
|
||
|
[Description("质检标记")]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)]
|
||
|
public string FLAG_QC_NAME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///描述
|
||
|
///</summary>
|
||
|
[Description("描述")]
|
||
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 200, Height = 30, Width = 200)]
|
||
|
[InputType(inputType.textArea)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 244, DataAlign = DataAlign.left)]
|
||
|
public string REMARK { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///删除标识
|
||
|
///</summary>
|
||
|
[Description("删除标识")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string FLGDEL { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建用户
|
||
|
/// </summary>
|
||
|
[Description("创建用户")]
|
||
|
public string CREATEUSER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
[Description("创建时间")]
|
||
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public DateTime CREATEDATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新用户
|
||
|
/// </summary>
|
||
|
[Description("更新用户")]
|
||
|
public string UPDATEUSER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新时间
|
||
|
/// </summary>
|
||
|
[Description("更新时间")]
|
||
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public DateTime UPDATEDATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 明细数据
|
||
|
/// </summary>
|
||
|
public string DetailValue { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|