天津投入产出系统后端
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.

123 lines
4.0 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.FJC.Web.Models.SendManage
{
public class PastCardModel : QDGModel
{
///<summary>
///主键
///</summary>
[Description("主键")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
[DGColumn(Hidden = 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 = 150, DataAlign = DataAlign.center, PrimaryKey = true)]
public string PASTECARDNO { get; set; }
///<summary>
///操作人
///</summary>
[Description("操作人")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.combobox)]
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string OPERATOR { get; set; }
/// <summary>
/// 操作时间
/// </summary>
[Description("操作时间")]
[HTMLInput(UpdateRead = false, MaxLength = 20)]
[InputType(inputType.datebox)]
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
public string PASTECARDDATE { get; set; }
///<summary>
///
///</summary>
[Description("")]
[HTMLInput(UpdateRead = false, required = true,MaxLength = 1)]
[InputType(inputType.combobox)]
public string PRODUCTIONNAME { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Description("创建时间")]
public DateTime CREATETIME { get; set; }
///<summary>
///
///</summary>
[Description("")]
[HTMLInput(UpdateRead = false, required = true,MaxLength = 1)]
[InputType(inputType.combobox)]
public string FLAGDEL { get; set; }
///<summary>
///
///</summary>
[Description("")]
[HTMLInput(UpdateRead = false, required = true,MaxLength = 1)]
[InputType(inputType.combobox)]
public string VINLACK { get; set; }
///<summary>
///
///</summary>
[Description("")]
[HTMLInput(UpdateRead = false, required = true,MaxLength = 1)]
[InputType(inputType.combobox)]
public string PLANTNAME { get; set; }
/// <summary>
/// 操作时间
/// </summary>
[Description("操作时间")]
[HTMLInput(UpdateRead = false, MaxLength = 20)]
[InputType(inputType.datebox)]
public string STARTCREATEDATE { get; set; }
[Description("至")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 7, Width = 151, FormatDate = "yyyy-MM-dd")]
[InputType(inputType.datebox)]
public string ENDCREATEDATE { get; set; }
///<summary>
///工作中心名称
///</summary>
[Description("工作中心名称")]
//[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 160)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.center)]
public string WORKCENTER_NAME { get; set; }
///<summary>
///工作中心编码
///</summary>
[Description("工作中心编码")]
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20, Width = 160)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
public string WORKCENTER_CODE { get; set; }
}
}