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.
139 lines
4.7 KiB
139 lines
4.7 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;
|
|
using System.Web.Mvc;
|
|
|
|
|
|
namespace QMAPP.FJC.Web.Models.Basic
|
|
{
|
|
///</summary>
|
|
/// 模块编号:M2-10
|
|
/// 作 用:物料架类型维护
|
|
/// 作 者:王丹丹
|
|
/// 编写日期:2015年06月03日
|
|
///</summary>
|
|
public class MaterialShelfTypeModel : 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)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string MARERIALSHELFTYPENAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///物料架型号
|
|
///</summary>
|
|
[Description("物料架型号")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 10)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string MARERIALSHELFTYPECODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///产品类别 A到Z,从配置中取
|
|
///</summary>
|
|
[Description("产品类别")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
|
|
[InputType(inputType.hidden)]
|
|
public string PRODUCTTYPE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///高低配 H/B,从配置中取
|
|
///</summary>
|
|
[Description("高低配")]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=HAndL", MaxLength = 1)]
|
|
[InputType(inputType.combobox)]
|
|
public string VERSION { get; set; }
|
|
[Description("高低配")]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string VERSIONTXT { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///颜色 1/2/3,从配置中去
|
|
///</summary>
|
|
[Description("颜色")]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=COLOR", MaxLength = 1)]
|
|
[InputType(inputType.combobox)]
|
|
public string COLORCODE { get; set; }
|
|
[Description("颜色")]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string COLORCODETXT { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///容量
|
|
///</summary>
|
|
[Description("容量")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 4, DataType = QDataType.number)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.right)]
|
|
public int CAPACITY { 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; }
|
|
|
|
|
|
}
|
|
|
|
}
|