using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Html;
using QMFrameWork.WebUI.Attribute;
using QMFrameWork.WebUI;
namespace QMAPP.MESReport.Web.Models.LineQTY
{
///
/// 合格率分析 视图MODEL
/// 于子清
/// 2017-10-13
///
public class StandardRateVModel : QDGModel
{
///
/// 起始日期
///
[Description("起始日期")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 120)]
[InputType(inputType.datebox)]
public string START_DATE { get; set; }
///
/// 结束日期
///
[Description("结束日期")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 120)]
[InputType(inputType.datebox)]
public string END_DATE { get; set; }
///
///工序
///
[Description("工序")]
[HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetWorkCellComboxSource", MaxLength = 20, Width = 150)]
[InputType(inputType.combobox)]
public string WORKCELL_CODE { get; set; }
}
}