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.
47 lines
1.5 KiB
47 lines
1.5 KiB
4 years ago
|
using System.Web.Mvc.Html;
|
||
|
using QMFrameWork.WebUI;
|
||
|
using QMFrameWork.WebUI.Attribute;
|
||
|
|
||
|
namespace QMAPP.FJC.Web.Models.Andon
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 返修率统计 视图MODEL
|
||
|
/// 于子清
|
||
|
/// 2017-10-25
|
||
|
/// </summary>
|
||
|
public class RepairRateCountVModel : 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/GetWList", MaxLength = 20, Width = 150)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string MATERIAL_CODE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///统计类型
|
||
|
///</summary>
|
||
|
[Description("统计类型")]
|
||
|
[HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetTJList", MaxLength = 20, Width = 110)]
|
||
|
[InputType(inputType.combobox)]
|
||
|
public string TYPE_COUNT { get; set; }
|
||
|
}
|
||
|
}
|