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.
81 lines
2.5 KiB
81 lines
2.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using System.Web.Mvc.Html;
|
|
using QMFrameWork.WebUI;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
|
|
namespace QMAPP.Web.Models.Sys
|
|
{
|
|
/// <summary>
|
|
/// 数据变更痕迹信息
|
|
/// </summary>
|
|
public class DataMarkModel : QDGModel
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Description("主键")]
|
|
[DGColumn(Hidden=true,PrimaryKey=true)]
|
|
public string MARKID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作时间
|
|
/// </summary>
|
|
[Description("操作时间")]
|
|
[HTMLInput(UpdateRead = false)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.center, FormatDate = ("yyyy-MM-dd hh:mm:ss"))]
|
|
public DateTime OPERATETIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作开始日期
|
|
/// </summary>
|
|
[Description("操作日期")]
|
|
[HTMLInput(UpdateRead = false, required = true)]
|
|
[InputType(inputType.datebox)]
|
|
public string STARTOPERATETIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作截至日期
|
|
/// </summary>
|
|
[Description("~")]
|
|
[HTMLInput(UpdateRead = false, required = true)]
|
|
[InputType(inputType.datebox)]
|
|
public string ENDOPERATETIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作者
|
|
/// </summary>
|
|
[Description("操作者")]
|
|
[HTMLInput(UpdateRead = false, required = true)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string OPERATEUSER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作类型
|
|
/// </summary>
|
|
[Description("操作类型")]
|
|
[HTMLInput(UpdateRead = false, required = true)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)]
|
|
public string OPERATETYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务类型(数据表名)
|
|
/// </summary>
|
|
[Description("业务类型")]
|
|
[HTMLInput(UpdateRead = false, required = true,JsonUtl = "/DataMark/GetDataKinds", Width = 152)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.left)]
|
|
public string DATAKIND { get; set; }
|
|
|
|
/// <summary>
|
|
/// 明细
|
|
/// </summary>
|
|
public string Detail { get; set; }
|
|
}
|
|
}
|