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.
95 lines
3.1 KiB
95 lines
3.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.Equipment
|
|
{
|
|
/// <summary>
|
|
/// 模块名称:模具资料维护
|
|
/// 作 者:来洋
|
|
/// 编写日期:2018年02月09日
|
|
/// </summary>
|
|
public class MouldDataModel : 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 = 20, Width = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string MOULDDATA_CODE { get; set; }
|
|
|
|
///<summary>
|
|
///模具资料ID
|
|
///</summary>
|
|
[Description("模具资料ID")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 100)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(Hidden = true,frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string MOULD_ID { get; set; }
|
|
|
|
///<summary>
|
|
///模具资料名称
|
|
///</summary>
|
|
[Description("模具资料名称")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 150, DataAlign = DataAlign.left)]
|
|
public string MOULDDATA_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[Description("备注")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 200, Height = 30, Width = 200)]
|
|
[InputType(inputType.textArea)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 244, DataAlign = DataAlign.left)]
|
|
public string MEMO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建用户
|
|
/// </summary>
|
|
[Description("创建用户")]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Description("创建时间")]
|
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
|
[InputType(inputType.hidden)]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新用户
|
|
/// </summary>
|
|
[Description("更新用户")]
|
|
public string UPDATEUSER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[Description("更新时间")]
|
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
|
[InputType(inputType.hidden)]
|
|
public DateTime UPDATEDATE { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|