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.
176 lines
6.0 KiB
176 lines
6.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.WarnManage
|
|
{
|
|
///</summary>
|
|
/// 模块编号:M6-2
|
|
/// 作 用:设备停机记录查询
|
|
/// 作 者:王丹丹
|
|
/// 编写日期:2015年06月18日
|
|
///</summary>
|
|
public class EquipMentMaintainModel : 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 = 36)]
|
|
[InputType(inputType.text)]
|
|
public string MID { 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 MACHINENAME { 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 MACHINECODDE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///工序类别
|
|
///</summary>
|
|
[Description("工序类别")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 2, JsonUtl = "/Materiel/GetComboxSource", multiple = false, Width = 155)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string PROCESSTYPE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///报警类别
|
|
///</summary>
|
|
[Description("报警类别")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 1, JsonUtl = "/Dict/GetFixedComboxSource?kind=WARNTYPE", multiple = false, Width = 155)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string WARNTYPE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///停机开始时间
|
|
///</summary>
|
|
[Description("停机开始时间")]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
|
|
public DateTime DOWNTIMESTART { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///停机结束时间
|
|
///</summary>
|
|
[Description("停机结束时间")]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
|
|
public DateTime DOWNTIMEEND { get; set; }
|
|
|
|
///<summary>
|
|
///停机开始时间(查询条件)
|
|
///</summary>
|
|
[Description("停机开始时间")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
|
|
[InputType(inputType.datebox)]
|
|
public string DOWNTIMESTARTTXT { get; set; }
|
|
///<summary>
|
|
///停机结束时间(查询条件)
|
|
///</summary>
|
|
[Description("至")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
|
|
[InputType(inputType.datebox)]
|
|
public string DOWNTIMEENDTXT { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///停机原因
|
|
///</summary>
|
|
[Description("停机原因")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string DOWNTIMEREMARK { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///生产线
|
|
///</summary>
|
|
[Description("生产线")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
|
|
[InputType(inputType.hidden)]
|
|
public string PRODUCELINE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[Description("备注")]
|
|
[HTMLInput(UpdateRead = false, MaxLength = 100, Width = 153, Height = 70)]
|
|
[InputType(inputType.textArea)]
|
|
[DGColumn(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("更新用户")]
|
|
public string UPDATEUSERNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[Description("更新时间")]
|
|
[HTMLInput(UpdateRead = true, MaxLength = 20)]
|
|
[InputType(inputType.hidden)]
|
|
public DateTime UPDATEDATE { get; set; }
|
|
}
|
|
}
|