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.
105 lines
3.6 KiB
105 lines
3.6 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;
|
|
|
|
namespace QMAPP.MD.Web.Models
|
|
{
|
|
/// <summary>
|
|
/// 模块名称:项目编号
|
|
/// 作 者:来洋
|
|
/// 编写日期:2018年04月09日
|
|
/// </summary>
|
|
public class ProjectModel: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 = true, required = true, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 20)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string FACTORY_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂名称
|
|
/// </summary>
|
|
[Description("工厂名称")]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 320, DataAlign = DataAlign.left)]
|
|
public string FACTORY_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 项目编号
|
|
/// </summary>
|
|
[Description("项目编号")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 180, DataAlign = DataAlign.left)]
|
|
public string PROJECT_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 项目名称
|
|
/// </summary>
|
|
[Description("项目名称")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 100)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(Sortable = true, Width = 220, DataAlign = DataAlign.left)]
|
|
public string PROJECT_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[Description("备注")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 100, Width = 150, Height = 50)]
|
|
[InputType(inputType.textArea)]
|
|
[DGColumn(Sortable = true, Width = 200, DataAlign = DataAlign.left)]
|
|
public string MEMO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建用户
|
|
/// </summary>
|
|
[Description("创建用户")]
|
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string CREATEUSER { 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("更新用户")]
|
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string UPDATEUSER { 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; }
|
|
}
|
|
}
|