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.
124 lines
4.1 KiB
124 lines
4.1 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
using QMFrameWork.WebUI.Attribute;
|
||
|
using System.Web.Mvc.Html;
|
||
|
using QMFrameWork.WebUI;
|
||
|
|
||
|
namespace QMAPP.MD.Web.Models
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块名称:班次
|
||
|
/// 作 者:郭兆福
|
||
|
/// 编写日期:2017年05月17日
|
||
|
/// </summary>
|
||
|
public class ShiftModel : QDGModel
|
||
|
{
|
||
|
///<summary>
|
||
|
///班次信息主键
|
||
|
///</summary>
|
||
|
[Description("班次信息主键")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
||
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工厂
|
||
|
/// </summary>
|
||
|
[Description("工厂")]
|
||
|
[HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 15, Width = 160)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
||
|
public string FACTORY_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工厂
|
||
|
/// </summary>
|
||
|
[Description("工厂")]
|
||
|
[DGColumn(Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
||
|
public string FACTORY_NAME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///班次编号
|
||
|
///</summary>
|
||
|
[Description("班次编号")]
|
||
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 20, Width = 160)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string SHIFT_CODE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///班次名称
|
||
|
///</summary>
|
||
|
[Description("班次名称")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 160)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 240, DataAlign = DataAlign.left)]
|
||
|
public string SHIFT_NAME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///班次开始时间
|
||
|
///</summary>
|
||
|
[Description("班次开始时间")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
|
||
|
[InputType(inputType.dateTimeBox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 120, DataAlign = DataAlign.center, FormatDate = "hh:mm:ss")]
|
||
|
public DateTime WORK_START_TIME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///班次结束时间
|
||
|
///</summary>
|
||
|
[Description("班次结束时间")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
|
||
|
[InputType(inputType.dateTimeBox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 120, DataAlign = DataAlign.center, FormatDate = "hh:mm:ss")]
|
||
|
public DateTime WORK_END_TIME { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///备注
|
||
|
///</summary>
|
||
|
[Description("备注")]
|
||
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 100, Width = 160, Height = 50)]
|
||
|
[InputType(inputType.textArea)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
||
|
public string REMARK { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建用户
|
||
|
/// </summary>
|
||
|
[Description("创建用户")]
|
||
|
public string CREATEUSER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
[Description("创建时间")]
|
||
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public DateTime CREATEDATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新用户
|
||
|
/// </summary>
|
||
|
[Description("更新用户")]
|
||
|
public string UPDATEUSER { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新时间
|
||
|
/// </summary>
|
||
|
[Description("更新时间")]
|
||
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
||
|
[InputType(inputType.hidden)]
|
||
|
public DateTime UPDATEDATE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 删除标记
|
||
|
/// </summary>
|
||
|
[Description("删除标记")]
|
||
|
public string FLGDEL { get; set; }
|
||
|
}
|
||
|
}
|