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.
34 lines
971 B
34 lines
971 B
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 UsageLogCountModel : QDGModel
|
|
{
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[Description("")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
///<summary>
|
|
///使用次数
|
|
///</summary>
|
|
[Description("使用次数")]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 70, DataAlign = DataAlign.center)]
|
|
public string USAGECOUNT { get; set; }
|
|
|
|
[Description("统计时间")]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 250, DataAlign = DataAlign.center)]
|
|
public string RTIME { get; set; }
|
|
|
|
|
|
}
|
|
}
|