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.
131 lines
4.3 KiB
131 lines
4.3 KiB
4 years ago
|
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 MaterielVersionModel : 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 = 36, JsonUtl = "/MaterielVersion/GetMaterielList")]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
||
|
public string MATERIAL_PID { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料号
|
||
|
/// </summary>
|
||
|
[Description("物料号")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 32)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string MATERIAL_CODE { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料名称
|
||
|
/// </summary>
|
||
|
[Description("物料名称")]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string MATERIAL_NAME { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料版本
|
||
|
/// </summary>
|
||
|
[Description("物料版本")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 100)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string MATERIAL_VERSION { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 厂家
|
||
|
/// </summary>
|
||
|
[Description("厂家")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 40)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string MANUFACTURER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 规格描述
|
||
|
/// </summary>
|
||
|
[Description("规格描述")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 40)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string SPEC_DESCRIPTION { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///删除标识
|
||
|
///</summary>
|
||
|
[Description("删除标识")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string FLAGDEL { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建用户
|
||
|
/// </summary>
|
||
|
[Description("创建用户")]
|
||
|
public string CREATEUSR { 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 UPDATEUSR { 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; }
|
||
|
|
||
|
}
|
||
|
}
|