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.Web.Models.Sys { /// /// 支持交互处理记录 /// public class SIDealInfoModel : QDGModel { public SIDealInfoModel() { } /// /// 主键 /// [Description("主键")] [HTMLInput(UpdateRead = true, required = true, MaxLength = 20)] [InputType(inputType.hidden)] public string PID { get; set; } /// /// 处理机构 /// [Description("处理机构")] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)] public string SOrgaDesc { get; set; } /// /// 问题ID /// [Description("问题ID")] public string ZPDDBPID { get; set; } /// /// 处理人员 /// [Description("处理人员")] [DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)] public string SUserName { get; set; } /// /// 处理时间 /// [Description("处理时间")] [DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")] public string ActionTime { get; set; } /// /// 处理行为 /// [Description("处理行为")] [DGColumn(Sortable = true, Width = 200, DataAlign = DataAlign.left)] public string Action { get; set; } } }