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.
280 lines
8.7 KiB
280 lines
8.7 KiB
using System;
|
|
using System.Web.Mvc.Html;
|
|
using QMFrameWork.WebUI;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using System.Web.Mvc.Html;
|
|
using QMAPP.Web;
|
|
using QMFrameWork.WebUI;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
namespace QMAPP.FJC.Web.Models.Operation
|
|
{
|
|
///</summary>
|
|
/// 模块编号:
|
|
/// 作 用:
|
|
/// 作 者:王庆男
|
|
/// 编写日期:2015年08月31日
|
|
///</summary>
|
|
public class ProductModel : QDGModel
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///0:表皮
|
|
//1:骨架
|
|
//3:气囊支架
|
|
//4:开关支架
|
|
//5:风道
|
|
//6:HUD风道
|
|
//7:格栅
|
|
//8:中控支架
|
|
|
|
///</summary>
|
|
[Description(" ")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 2)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PRODUCTTYPE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PRODUCTCODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PRODUCTSOURCE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MACHINENAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MACHINECODDE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = false, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MATERIAL_TYPE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MATERIAL_CODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///0:合格
|
|
//1:返修
|
|
//2:作废
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string STATUS { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string ISPARENT { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///0:搪塑
|
|
//1:骨架注塑
|
|
//2:气囊支架注塑
|
|
//3:风道注塑
|
|
//4:中控之间注塑
|
|
//5:HUD风道注塑
|
|
//5:冷刀弱化
|
|
//6:火焰加工
|
|
//7:预热
|
|
//8:浇注
|
|
//9:红外扫描
|
|
//10:冲切
|
|
//11:铣削
|
|
//12:铆接
|
|
//13:超时波焊接
|
|
//14:红外焊接
|
|
//15:总成装配
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 2)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string CURRENTPROCESS { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PRODUCELINE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PRODUCESHIFTNAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PRODUCESHIFTTCODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///0:在库
|
|
//1:发货
|
|
//2.异常出库
|
|
|
|
///</summary>
|
|
[Description(" ")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string OUTFLAG { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///0:未使用
|
|
//1:使用中
|
|
//2:使用完成
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string USINGSTATE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 4)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public int CAPACITY { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 4)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public int USINGCOUNT { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
|
|
[InputType(inputType.datebox)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd")]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string UPDATEUSER { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
|
|
[InputType(inputType.datebox)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd")]
|
|
public DateTime UPDATEDATE { get; set; }
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|