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.MD.Web.Models
{
///
/// 模块名称:Bom信息
/// 作 者:郭兆福
/// 编写日期:2017年05月10日
///
public class PbomModel : QDGModel
{
///
///BOM主键
///
[Description("BOM主键")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
[DGColumn(Hidden = true, PrimaryKey = true)]
public string PID { get; set; }
///
///PBOM编号
///
[Description("BOM编号")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 240)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 120, DataAlign = DataAlign.left)]
public string PBOM_CODE { get; set; }
///
///物料号
///
[Description("物料号")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 244)]
[InputType(inputType.combotree)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 120, DataAlign = DataAlign.left)]
public string MATERIAL_CODE { get; set; }
///
///物料名称
///
[Description("物料名称")]
[DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.left)]
public string MATERIAL_NAME { get; set; }
///
///特征码
///
[Description("特征码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 10, Width = 244)]
[InputType(inputType.text)]
//[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string PROPERTY_CODE { get; set; }
///
/// 生效日期
///
[Description("生效日期")]
[HTMLInput(UpdateRead = true, required = true, MaxLength = 16, Width = 244)]
[InputType(inputType.datebox)]
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd")]
public DateTime EOA_DATE { get; set; }
///
/// 失效日期
///
[Description("失效日期")]
[HTMLInput(UpdateRead = true, required = true, MaxLength = 16, Width = 244)]
[InputType(inputType.datebox)]
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd")]
public DateTime EXP_DATE { get; set; }
///
///状态
///
[Description("状态")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1, Width = 244, JsonUtl = "/Dict/GetFixedComboxSource?kind=BomStatus&WithEmpty=false")]
[InputType(inputType.combobox)]
public string STATUS { get; set; }
///
///工艺路线
///
[Description("工艺路线")]
[HTMLInput(UpdateRead = false, required = true, Width = 244)]
[InputType(inputType.combobox)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 80, DataAlign = DataAlign.center)]
public string ROUTE_CODE { get; set; }
///
///工艺路线
///
[Description("工艺路线名称")]
[DGColumn(frozenColumns = true, Sortable = true, Width = 120, DataAlign = DataAlign.left)]
public string ROUTE_NAME { get; set; }
///
///状态名字
///
[Description("状态")]
[DGColumn(frozenColumns = false, Sortable = true, Width = 60, DataAlign = DataAlign.center)]
public string STATUS_NAME { get; set; }
///
///项目编号
///
[Description("项目编号")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 244)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 60, DataAlign = DataAlign.center)]
public string ITEM_NUM { get; set; }
///
///版本号
///
[Description("版本号")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 244)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 60, DataAlign = DataAlign.center)]
public string VER_NUM { get; set; }
///
///描述
///
[Description("描述")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 200, Width = 244, Height = 50)]
[InputType(inputType.textArea)]
[DGColumn(Sortable = true, Width = 240, DataAlign = DataAlign.left)]
public string REMARK { get; set; }
///
///删除标识
///
[Description("删除标识")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1)]
[InputType(inputType.hidden)]
public string FLGDEL { get; set; }
///
/// 创建用户
///
[Description("创建用户")]
public string CREATEUSER { get; set; }
///
/// 创建时间
///
[Description("创建时间")]
[HTMLInput(UpdateRead = true, MaxLength = 20)]
[InputType(inputType.hidden)]
public DateTime CREATEDATE { get; set; }
///
/// 更新用户
///
[Description("更新用户")]
public string UPDATEUSER { get; set; }
///
/// 更新时间
///
[Description("更新时间")]
[HTMLInput(UpdateRead = true, MaxLength = 20)]
[InputType(inputType.hidden)]
public DateTime UPDATEDATE { get; set; }
///
/// 工厂
///
[Description("工厂")]
[HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 15, Width = 244)]
[InputType(inputType.combobox)]
[DGColumn(Sortable = true, Width = 50, DataAlign = DataAlign.left)]
public string FACTORY_CODE { get; set; }
///
/// 工厂
///
[Description("工厂")]
[DGColumn(Sortable = true, Width = 300, DataAlign = DataAlign.left)]
public string FACTORY_NAME { get; set; }
}
}