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.
141 lines
5.4 KiB
141 lines
5.4 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.FJC.Web.Models.FIS
|
||
|
{
|
||
|
public class FISAssemblyModel : QDGModel
|
||
|
{
|
||
|
///<summary>
|
||
|
///主键
|
||
|
///</summary>
|
||
|
[Description("ID")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 200)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = false, Width = 30, DataAlign = DataAlign.left)]
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///名称
|
||
|
///</summary>
|
||
|
[Description("名称")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 200)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = false, Width = 180, DataAlign = DataAlign.left)]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///FIS特征码
|
||
|
///</summary>
|
||
|
[Description("FIS特征码")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 200)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = false, Width = 70, DataAlign = DataAlign.left)]
|
||
|
public string AsmSetCode { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///车型代码
|
||
|
///</summary>
|
||
|
[Description("车型代码")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 200)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = false, Width = 60, DataAlign = DataAlign.left)]
|
||
|
public string CarModel { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///项目代码
|
||
|
///</summary>
|
||
|
[Description("项目代码")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 200)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = false, Width = 60, DataAlign = DataAlign.left)]
|
||
|
public string ProjectCode { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///激活
|
||
|
///</summary>
|
||
|
[Description("激活")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 200)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = false, Width = 40, DataAlign = DataAlign.left)]
|
||
|
public string Active { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///删除
|
||
|
///</summary>
|
||
|
[Description("删除")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 200)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = false, Width = 40, DataAlign = DataAlign.left)]
|
||
|
public string IsDeleted { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///左前门总成物料号
|
||
|
///</summary>
|
||
|
[Description("左前门总成物料号")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 140, DataAlign = DataAlign.left)]
|
||
|
public string MESModulFL { get; set; }
|
||
|
///<summary>
|
||
|
///左前门总成名称
|
||
|
///</summary>
|
||
|
[Description("左前门总成名称")]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
||
|
public string MESModulFL_NAME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///右前门总成物料号
|
||
|
///</summary>
|
||
|
[Description("右前门总成物料号")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 140, DataAlign = DataAlign.left)]
|
||
|
public string MESModulFR { get; set; }
|
||
|
///<summary>
|
||
|
///右前门总成名称
|
||
|
///</summary>
|
||
|
[Description("右前门总成名称")]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
||
|
public string MESModulFR_NAME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///左后门总成物料号
|
||
|
///</summary>
|
||
|
[Description("左后门总成物料号")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 140, DataAlign = DataAlign.left)]
|
||
|
public string MESModulRL { get; set; }
|
||
|
///<summary>
|
||
|
///左后门总成名称
|
||
|
///</summary>
|
||
|
[Description("左后门总成名称")]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
||
|
public string MESModulRL_NAME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///右后门总成物料号
|
||
|
///</summary>
|
||
|
[Description("右后门总成物料号")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 140, DataAlign = DataAlign.left)]
|
||
|
public string MESModulRR { get; set; }
|
||
|
///<summary>
|
||
|
///右后门总成名称
|
||
|
///</summary>
|
||
|
[Description("右后门总成名称")]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
||
|
public string MESModulRR_NAME { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|