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.
159 lines
5.6 KiB
159 lines
5.6 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
|
|
{
|
|
public class ProductInfoModel : QDGModel
|
|
{
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.hidden)]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///零件号
|
|
///</summary>
|
|
[Description("零件号")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PRODUCTMARK { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///零件号描述
|
|
///</summary>
|
|
[Description("零件号描述")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PRODUCTDESCRIPTION { get; set; }
|
|
|
|
|
|
/////<summary>
|
|
/////区域主键
|
|
/////</summary>
|
|
//[Description("区域")]
|
|
//[HTMLInput(UpdateRead = false, required = true, MaxLength = 36, JsonUtl = "/Dict/GetAreaComboxSource")]//JsonUtl = "/Plant/GetAreaList"
|
|
//[InputType(inputType.combobox)]
|
|
//public string AREAID { get; set; }
|
|
///// <summary>
|
|
///// 区域编号
|
|
///// </summary>
|
|
//[Description("区域编号")]
|
|
//[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
//public string AREACODE { get; set; }
|
|
///// <summary>
|
|
///// 区域名称
|
|
///// </summary>
|
|
//[Description("区域名称")]
|
|
//[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
//public string AREANAME { get; set; }
|
|
|
|
///<summary>
|
|
///工厂主键
|
|
///</summary>
|
|
[Description("工厂")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36, JsonUtl = "/ProductInfo/GetFactoryList")]
|
|
[InputType(inputType.combobox)]
|
|
public string FACTORYID { get; set; }
|
|
/// <summary>
|
|
/// 工厂编号
|
|
/// </summary>
|
|
[Description("工厂编号")]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string FACTORY_CODE { get; set; }
|
|
/// <summary>
|
|
/// 工厂名
|
|
/// </summary>
|
|
[Description("工厂名称")]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string FACTORY_NAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[Description("零件类别")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36, JsonUtl = "/ProductInfo/GetProductBasicList")]
|
|
[InputType(inputType.combobox)]
|
|
public string PRODUCTBASICID { get; set; }
|
|
/// <summary>
|
|
/// 零件类别编号
|
|
/// </summary>
|
|
[Description("零件类别编号")]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string PRODUCTTYPECODE { get; set; }
|
|
/// <summary>
|
|
/// 零件类别名
|
|
/// </summary>
|
|
[Description("零件类别名称")]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string PRODUCTNAME { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
///<summary>
|
|
///备注
|
|
///</summary>
|
|
[Description("备 注")]
|
|
[HTMLInput(UpdateRead = false, MaxLength = 100, Width = 153, Height = 70)]
|
|
[InputType(inputType.textArea)]
|
|
[DGColumn(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(frozenColumns = false, 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; }
|
|
}
|
|
}
|