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.
145 lines
5.0 KiB
145 lines
5.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.MD.Web.Models
|
|
{
|
|
/// <summary>
|
|
/// 作 用:班组成员
|
|
/// 作 者:周晓东
|
|
/// 编写日期:2017年11月21日
|
|
/// </summary>
|
|
public class ScheduleModel : QDGModel
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Description("主键")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[InputType(inputType.hidden)]
|
|
[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 = false, Width = 100, DataAlign = DataAlign.left)]
|
|
public string FACTORY_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂
|
|
/// </summary>
|
|
[Description("工厂")]
|
|
[DGColumn(Sortable = false, Width = 300, DataAlign = DataAlign.left)]
|
|
public string FACTORY_NAME { get; set; }
|
|
|
|
///<summary>
|
|
///班次编号
|
|
///</summary>
|
|
[Description("班次编号")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 2, Width = 160)]
|
|
[InputType(inputType.combobox)]
|
|
public string SHIFT_CODE { get; set; }
|
|
[Description("班次")]
|
|
[DGColumn(frozenColumns = false, Sortable = false, Width = 100, DataAlign = DataAlign.center)]
|
|
public string SHIFT_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 班组编码
|
|
/// </summary>
|
|
[Description("班组编码")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 2, Width = 160)]
|
|
[InputType(inputType.combobox)]
|
|
public string TEAM_CODE { get; set; }
|
|
[Description("班组")]
|
|
[DGColumn(frozenColumns = false, Sortable = false, Width = 80, DataAlign = DataAlign.center)]
|
|
public string TEAM_NAME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
[Description("开始日期")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 160, FormatDate = "yyyy-MM-dd")]
|
|
[InputType(inputType.datebox)]
|
|
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd")]
|
|
public DateTime START_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
[Description("结束日期")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 160, FormatDate = "yyyy-MM-dd")]
|
|
[InputType(inputType.datebox)]
|
|
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd")]
|
|
public DateTime END_DATE { get; set; }
|
|
|
|
//当前日期-用于比较
|
|
public DateTime NOW_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 上班时间
|
|
/// </summary>
|
|
[Description("上班时间")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 160, FormatDate = "HH:mm:ss")]
|
|
[InputType(inputType.dateTimeBox)]
|
|
//[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "hh:mm:ss")]
|
|
public DateTime WORK_START_TIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下班时间
|
|
/// </summary>
|
|
[Description("下班时间")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 160, FormatDate = "HH:mm:ss")]
|
|
[InputType(inputType.dateTimeBox)]
|
|
//[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "hh:mm:ss")]
|
|
public DateTime WORK_END_TIME { get; set; }
|
|
|
|
///<summary>
|
|
///描述
|
|
///</summary>
|
|
[Description("描 述")]
|
|
[HTMLInput(UpdateRead = false, MaxLength = 100, Width = 160, Height = 50)]
|
|
[InputType(inputType.textArea)]
|
|
[DGColumn(Sortable = true, Width = 300, DataAlign = DataAlign.left)]
|
|
public string REMARK { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 创建用户
|
|
/// </summary>
|
|
[Description("创建用户")]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[Description("创建时间")]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新用户
|
|
/// </summary>
|
|
[Description("更新用户")]
|
|
public string UPDATEUSER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[Description("更新时间")]
|
|
public DateTime UPDATEDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除标记
|
|
/// </summary>
|
|
[Description("删除标记")]
|
|
public string FLGDEL { get; set; }
|
|
}
|
|
}
|