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.
158 lines
5.7 KiB
158 lines
5.7 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;
|
||
|
using System.Web.Mvc;
|
||
|
|
||
|
namespace QMAPP.FJC.Web.Models.Basic
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块编号:M2-1
|
||
|
/// 作 用:物料号页面模型
|
||
|
/// 作 者:王丹丹
|
||
|
/// 编写日期:2015年05月26日
|
||
|
///</summary>
|
||
|
public class MaterielModel : 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 = 100)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string MATERIALNAME { 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 MATERIALNO { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料类别
|
||
|
/// </summary>
|
||
|
[Description("物料类别")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1, JsonUtl = "/Dict/GetFixedComboxSource?kind=MATERIALTYPE", multiple = false, Width = 155)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
public string MATERIALTYPE { get; set; }
|
||
|
[Description("物料类别")]
|
||
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string MATERIALTYPETXT { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工序类别
|
||
|
/// </summary>
|
||
|
[Description("工序类别")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 2, JsonUtl = "/Materiel/GetComboxSource", multiple = false, Width = 155)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
public string PROCESSTYPE { get; set; }
|
||
|
[Description("工序类别")]
|
||
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string PROCESSTYPETXT { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///重量
|
||
|
///</summary>
|
||
|
[Description("重量(KG)")]
|
||
|
[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 WEIGHT { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///颜色
|
||
|
///</summary>
|
||
|
[Description("颜色")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, JsonUtl = "/Dict/GetFixedComboxSource?kind=COLOR")]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.right)]
|
||
|
public string COLOR { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///高低配
|
||
|
///</summary>
|
||
|
[Description("高低配")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, JsonUtl = "/Dict/GetFixedComboxSource?kind=HAndL")]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 50, DataAlign = DataAlign.right)]
|
||
|
public string HAndL { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///生产线
|
||
|
///</summary>
|
||
|
[Description("生产线")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public string PRODUCELINE { 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(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; }
|
||
|
}
|
||
|
}
|