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.
140 lines
4.9 KiB
140 lines
4.9 KiB
4 years ago
|
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.Basic
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块编号:M2-3
|
||
|
/// 作 用:班次信息页面模型
|
||
|
/// 作 者:王丹丹
|
||
|
/// 编写日期:2015年05月28日
|
||
|
///</summary>
|
||
|
public class ProduceShiftModel : 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 = 50)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string PRODUCESHIFTNAME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///班次编号
|
||
|
///</summary>
|
||
|
[Description("班次编号")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string PRODUCESHIFTTCODE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///班次开始时间
|
||
|
///</summary>
|
||
|
[Description("班次开始时间")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
|
||
|
[InputType(inputType.dateTimeBox)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "hh:mm:ss")]
|
||
|
public DateTime PSSTART { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///班次结束时间
|
||
|
///</summary>
|
||
|
[Description("班次结束时间")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
|
||
|
[InputType(inputType.dateTimeBox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "hh:mm:ss")]
|
||
|
public DateTime PSEND { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///生产线
|
||
|
///</summary>
|
||
|
[Description("工作中心")]
|
||
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 50, JsonUtl = "/Dict/GetAllWorkCenterComboxSource")]
|
||
|
[InputType(inputType.combobox)]
|
||
|
//[DGColumn(frozenColumns = false, Sortable = true, Width = 150, DataAlign = DataAlign.left)]
|
||
|
public string PRODUCELINE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///工作中心名称
|
||
|
///</summary>
|
||
|
[Description("工作中心名称")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 180, DataAlign = DataAlign.center)]
|
||
|
public string WORKCENTER_NAME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///备注
|
||
|
///</summary>
|
||
|
[Description("备注")]
|
||
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 100, Width = 153, Height = 70)]
|
||
|
[InputType(inputType.textArea)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 120, DataAlign = DataAlign.left)]
|
||
|
public string MEMO { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建用户
|
||
|
/// </summary>
|
||
|
[Description("创建用户")]
|
||
|
public string CREATEUSER { get; set; }
|
||
|
/// <summary>
|
||
|
/// 创建用户
|
||
|
/// </summary>
|
||
|
[Description("创建用户")]
|
||
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string CREATEUSERNAME { 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("更新用户")]
|
||
|
public string UPDATEUSER { get; set; }
|
||
|
/// <summary>
|
||
|
/// 更新用户
|
||
|
/// </summary>
|
||
|
[Description("更新用户")]
|
||
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string UPDATEUSERNAME { 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; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|