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.Equipment
{
///
/// 设备维修保养记录
///
public class EquipMentRecordModel : QDGModel
{
///
///设备维修保养主键
///
[Description("设备维修保养主键")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
[DGColumn(Hidden = true, PrimaryKey = true)]
public string PID { get; set; }
///
///维修编号
///
[Description("维修编号")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
public string REPAIECODE { get; set; }
///
///维修类别
///
[Description("维修类别")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
[InputType(inputType.text)]
public string REPAIETYPE { get; set; }
///
///故障编码
///
[Description("故障编码")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
[InputType(inputType.text)]
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string FAULTCODE { get; set; }
///
///设备编码
///
[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; }
///
///生成方式
///
[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 GENRATIONWAY { get; set; }
///
///解决方案
///
[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 SOLUTION { get; set; }
///
///维修开始时间
///
[Description("维修开始时间")]
[DGColumn(frozenColumns = false, Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
public DateTime REPAIESTART { get; set; }
///
///维修结束时间
///
[Description("维修结束时间")]
[DGColumn(frozenColumns = false, Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")]
public DateTime DOWNTIMEEND { get; set; }
///
///维修开始时间(查询条件)
///
[Description("维修开始时间")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
[InputType(inputType.datebox)]
public string REPAIESTARTTXT { get; set; }
///
///维修结束时间(查询条件)
///
[Description("至")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
[InputType(inputType.datebox)]
public string REPAIEENDTXT { get; set; }
///
/// 创建用户
///
[Description("创建用户")]
public string CREATEUSER { get; set; }
///
/// 创建用户
///
[Description("操作人")]
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
public string CREATEUSERNAME { get; set; }
///
/// 创建时间
///
[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; }
///
/// 更新用户
///
[Description("更新用户")]
public string UPDATEUSER { get; set; }
///
/// 更新用户
///
[Description("更新用户")]
public string UPDATEUSERNAME { get; set; }
///
/// 更新时间
///
[Description("更新时间")]
[HTMLInput(UpdateRead = true, MaxLength = 20)]
[InputType(inputType.hidden)]
public DateTime UPDATEDATE { get; set; }
}
}