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.
92 lines
3.6 KiB
92 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.FJC.Web.Models.SendManage
|
|
{
|
|
public class SendPlanRecordModel : 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 = false, required = true, MaxLength = 100)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string SENDCODE { get; set; }
|
|
/// <summary>
|
|
/// 生成时间
|
|
/// </summary>
|
|
[Description("生成时间")]
|
|
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
|
|
public DateTime CREATEDATE { get; set; }
|
|
///<summary>
|
|
///高低配
|
|
///</summary>
|
|
[Description("高低配")]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=HAndL", MaxLength = 1)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string VERSION { get; set; }
|
|
///<summary>
|
|
///颜色
|
|
///</summary>
|
|
[Description("颜色")]
|
|
[HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetFixedComboxSource?kind=COLOR", MaxLength = 1)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string COLORCODE { get; set; }
|
|
///<summary>
|
|
///数量
|
|
///</summary>
|
|
[Description("数量")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 4)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.right)]
|
|
public int COUNT { get; set; }
|
|
///<summary>
|
|
///班次
|
|
///</summary>
|
|
[Description("班次")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string PRODUCESHIFTNAME { 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 CREATEUSER { 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 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; }
|
|
|
|
|
|
|
|
}
|
|
}
|