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.
223 lines
7.8 KiB
223 lines
7.8 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.Equipment
|
|
{
|
|
public class MouldModel:QDGModel
|
|
{
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
///<summary>
|
|
///模具编码
|
|
///</summary>
|
|
[Description("模具编码")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 10)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MOULD_CODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///模具名称
|
|
///</summary>
|
|
[Description("模具名称")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 64)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MOULD_NAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///模具类型
|
|
///</summary>
|
|
[Description("模具类型")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MOULD_TYPE { get; set; }
|
|
|
|
///<summary>
|
|
///模具资料
|
|
///</summary>
|
|
[Description("模具资料")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
//[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MoldDataName { get; set; }
|
|
|
|
///<summary>
|
|
///物料号
|
|
///</summary>
|
|
[Description("物料号")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 40)]
|
|
[InputType(inputType.combobox)]
|
|
//[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MATERIAL_CODE { get; set; }
|
|
|
|
///<summary>
|
|
///物料名称
|
|
///</summary>
|
|
[Description("物料名称")]
|
|
//[DGColumn(frozenColumns = false, Sortable = true, Width = 140, DataAlign = DataAlign.center)]
|
|
public string MATERIAL_NAME { get; set; }
|
|
|
|
///<summary>
|
|
///工作中心编码
|
|
///</summary>
|
|
[Description("工作中心编号")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 6)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string WORKCENTER_CODE { get; set; }
|
|
|
|
///<summary>
|
|
///工作中心名称
|
|
///</summary>
|
|
[Description("工作中心名称")]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string WORKCENTER_NAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///设备编码
|
|
///</summary>
|
|
[Description("设备编码")]
|
|
//[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.combobox)]
|
|
//[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MACHINE_PID { get; set; }
|
|
|
|
///<summary>
|
|
///设备名称
|
|
///</summary>
|
|
[Description("设备名称")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 20)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MACHINENAME { get; set; }
|
|
|
|
///<summary>
|
|
///模具状态
|
|
///</summary>
|
|
[Description("模具状态")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, JsonUtl = "/Dict/GetFixedComboxSource?kind=MOULD_STATE")]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 70, DataAlign = DataAlign.center)]
|
|
public string MOULD_STATE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///使用次数
|
|
///</summary>
|
|
[Description("使用次数")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 70, DataAlign = DataAlign.center)]
|
|
public int USAGECOUNT { get; set; }
|
|
|
|
///<summary>
|
|
///同步标记
|
|
///</summary>
|
|
[Description("同步标记")]
|
|
[HTMLInput(UpdateRead = true, required = false, MaxLength = 6)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string MAXIMO_SYNC { get; set; }
|
|
|
|
///<summary>
|
|
///同步时间
|
|
///</summary>
|
|
[Description("同步时间")]
|
|
[HTMLInput(UpdateRead = true, required = false, MaxLength = 30)]
|
|
//[InputType(inputType.dateTimeBox)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 150, DataAlign = DataAlign.center)]
|
|
public string SYNC_DATE { get; set; }
|
|
|
|
|
|
|
|
///<summary>
|
|
///描述
|
|
///</summary>
|
|
[Description("描 述")]
|
|
[HTMLInput(UpdateRead = false, MaxLength = 100, Height = 70,Width = 150)]
|
|
[InputType(inputType.textArea)]
|
|
[DGColumn(Sortable = true, Width = 120, DataAlign = DataAlign.left)]
|
|
public string REMARK { 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; }
|
|
|
|
///<summary>
|
|
///工厂编号
|
|
///</summary>
|
|
[Description("工厂编号")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 36, JsonUtl = "/Dict/GetFactoryComboxSource")]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn( Sortable = true, Width = 50, DataAlign = DataAlign.left)]
|
|
public string FACTORY_CODE { get; set; }
|
|
/// <summary>
|
|
/// 工厂名称
|
|
/// </summary>
|
|
[Description("工厂名称")]
|
|
[DGColumn( Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
|
public string FACTORY_NAME { get; set; }
|
|
|
|
}
|
|
}
|