天津投入产出系统后端
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.
 
 
 
 
 
 

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