using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Html;
using QMFrameWork.WebUI.Attribute;
using QMFrameWork.WebUI;
namespace QMAPP.MD.Web.Models
{
///
/// 模块名称:工厂
/// 作 者:郭兆福
/// 编写日期:2017年05月04日
///
public class FactoryModel : QDGModel
{
///
///主键
///
[Description("")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[DGColumn(Hidden = true, PrimaryKey = true)]
public string PID { get; set; }
///
///工厂编码
///
[Description("工厂编码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20,Width=120)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string FACTORY_CODE { get; set; }
///
///工厂编码原
///
public string FACTORY_CODE_OLD { get; set; }
///
///工厂名称
///
[Description("工厂名称")]
[HTMLInput(UpdateRead = false, required = true, Width = 300, MaxLength = 30)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.left)]
public string FACTORY_NAME { get; set; }
///
///工厂简称
///
[Description("工厂简称")]
[HTMLInput(UpdateRead = false, required = true, Width = 300, MaxLength = 15)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 150, DataAlign = DataAlign.left)]
public string FACTORY_SHORT { get; set; }
///
///公司主键
///
[Description("公司")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36, JsonUtl = "/Dict/GetCorpComboxSource")]
[InputType(inputType.combobox)]
public string CORP_PID { get; set; }
///
/// 公司编号
///
[Description("公司编号")]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string CORP_CODE { get; set; }
///
///公司名称
///
[Description("公司名称")]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string CORP_NAME { get; set; }
///
///备注
///
[Description("描 述")]
[HTMLInput(UpdateRead = false, MaxLength = 100, Width = 300, Height = 50)]
[InputType(inputType.textArea)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 300, 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 CREATEUSR { get; set; }
///
/// 创建用户
///
[Description("创建用户")]
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string CREATEUSERNAME { get; set; }
///
/// 创建时间
///
[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; }
///
/// 更新用户
///
[Description("更新用户")]
public string UPDATEUSR { get; set; }
///
/// 更新用户
///
[Description("更新用户")]
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string UPDATEUSERNAME { get; set; }
///
/// 更新时间
///
[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; }
}
}