天津投入产出系统后端
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.

202 lines
7.1 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-8
/// 作 用:加工参数标准值设定页面模型
/// 作 者:王丹丹
/// 编写日期:2015年06月03日
///</summary>
public class ProcessParameterModel : 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>
///备注
///</summary>
[Description("参数名称")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 100, Width = 153, Height = 70)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 120, DataAlign = DataAlign.left)]
public string PARADESCRIBE { get; set; }
///<summary>
///参数名称
///</summary>
[Description("")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 50)]
[InputType(inputType.text)]
public string PARANAME { get; set; }
///<summary>
///加工参数表名称
///</summary>
[Description("加工参数表名称")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
[InputType(inputType.text)]
//[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string PARATABLENAME { get; set; }
///<summary>
///设备信息主键
///</summary>
[Description("设备信息主键")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
[DGColumn(Hidden = true)]
public string MACHINEID { get; set; }
///<summary>
///设备编码
///</summary>
[Description("设备编码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50, JsonUtl = "/ProcessParameter/GetMachineComboxSource")]
[InputType(inputType.combobox)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string MACHINECODDE { get; set; }
///<summary>
///工序编码
///</summary>
[Description("工序编码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50, JsonUtl = "/Dict/GetALLWorkCellComboxSource")]
[InputType(inputType.combobox)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string WORKCELL_CODE { get; set; }
///<summary>
///工序类别(查询) (6:冷刀弱化 7:火焰加工 8:预热 9:浇注 10:红外扫描 11:冲切 12:铣削 13:铆接 14:超时波焊接 15:红外焊接 16:总成装配
///</summary>
[Description("工序类别")]
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/ProcessParameter/GetComboxSource", MaxLength = 2)]
[InputType(inputType.combobox)]
public string PROCESSTYPESEARCH { get; set; }
///<summary>
///工序类别(编辑)
///</summary>
[Description("工序类别")]
[HTMLInput(UpdateRead = false, required = true)]
[InputType(inputType.text)]
public string PROCESSTYPE { get; set; }
[Description("工序类别")]
[HTMLInput(UpdateRead = false, required = true)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string PROCESSTYPETXT { get; set; }
///<summary>
///间隔设置
///</summary>
[Description("间隔设置")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 10)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.right)]
public decimal STEP { get; set; }
///<summary>
///生产线
///</summary>
[Description("生产线")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 20)]
[InputType(inputType.text)]
public string PRODUCELINE { get; set; }
///<summary>
///上限值
///</summary>
[Description("上限值")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 10)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.right)]
public decimal MAXVALUE { get; set; }
///<summary>
///下限值
///</summary>
[Description("下限值")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 10)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.right)]
public decimal MINVALUE { get; set; }
///<summary>
///备注
///</summary>
[Description("备注")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 100, Width = 153, Height = 70)]
[InputType(inputType.textArea)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 120, DataAlign = DataAlign.left)]
public string MEMO { 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; }
}
}