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.
151 lines
5.5 KiB
151 lines
5.5 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
|
|
{
|
|
///</summary>
|
|
/// 模块编号:M2-9
|
|
/// 作 用:投料配置规则页面模型
|
|
/// 作 者:王丹丹
|
|
/// 编写日期:2015年06月03日
|
|
///</summary>
|
|
public class ProductMderuleModel : 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.hidden)]
|
|
public string PRODUCTTYPE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///颜色
|
|
///</summary>
|
|
[Description("颜色")]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=COLOR", MaxLength = 10)]
|
|
[InputType(inputType.combobox)]
|
|
public string COLORCODE { get; set; }
|
|
[Description("颜色")]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string COLORCODETXT { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///高低配
|
|
///</summary>
|
|
[Description("高低配")]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=HAndL", MaxLength = 1)]
|
|
[InputType(inputType.combobox)]
|
|
public string HB { get; set; }
|
|
[Description("高低配")]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string HBTXT { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///搪塑注料顺序
|
|
///</summary>
|
|
[Description("搪塑注料顺序")]
|
|
[InputType(inputType.combobox)]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=IntoIndex", MaxLength = 10)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.right)]
|
|
public string INJECTIONINDEX { get; set; }
|
|
///<summary>
|
|
///搪塑注料顺序(查询条件)
|
|
///</summary>
|
|
[Description("搪塑注料顺序")]
|
|
[InputType(inputType.combobox)]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=IntoIndex", MaxLength = 1)]
|
|
public string INJECTIONINDEXSEARCH { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///搪塑上料口
|
|
///</summary>
|
|
[Description("搪塑上料口")]
|
|
[InputType(inputType.combobox)]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=IntoPort", MaxLength = 10)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.right)]
|
|
public string INJECTIONTERMINAL { get; set; }
|
|
///<summary>
|
|
///搪塑上料口(查询条件)
|
|
///</summary>
|
|
[Description("搪塑上料口")]
|
|
[InputType(inputType.combobox)]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=IntoPort", MaxLength = 10)]
|
|
public string INJECTIONTERMINALSEARCH { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///注料重量
|
|
///</summary>
|
|
[Description("注料重量KG")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 10)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.right)]
|
|
public decimal USEDWEIGHT { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 创建用户
|
|
/// </summary>
|
|
[Description("创建用户")]
|
|
public string CREATEUSER { 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 UPDATEUSER { 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; }
|
|
}
|
|
|
|
}
|