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.
52 lines
1.6 KiB
52 lines
1.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
using QMFrameWork.WebUI;
|
|
using System.Web.Mvc.Html;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
using QMFrameWork.WebUI;
|
|
|
|
namespace QMAPP.MESReport.Web.Models.LineQTY
|
|
{
|
|
/// <summary>
|
|
/// 设备用电分析
|
|
/// 于子清
|
|
/// 2017-11-6
|
|
/// </summary>
|
|
public class EquConsumeCountVModel : QDGModel
|
|
{
|
|
/// <summary>
|
|
/// 起始日期
|
|
/// </summary>
|
|
[Description("起始日期")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 120)]
|
|
[InputType(inputType.datebox)]
|
|
public string START_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
[Description("结束日期")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 120)]
|
|
[InputType(inputType.datebox)]
|
|
public string END_DATE { get; set; }
|
|
|
|
///<summary>
|
|
/// 统计类型
|
|
///</summary>
|
|
[Description("统计类型")]
|
|
[HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetYMDList", MaxLength = 20, Width = 110)]
|
|
[InputType(inputType.combobox)]
|
|
public string TYPE_COUNT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备编码
|
|
/// </summary>
|
|
[Description("设备编码")]
|
|
[HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetSList", MaxLength = 20, Width = 110)]
|
|
[InputType(inputType.combobox)]
|
|
public string EQPT_CODE { get; set; }
|
|
}
|
|
}
|