using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AUTS.Domain.ViewModels.QueryCondition { /// /// 查询数据需要的条件 /// public class Condition { /// /// 内部单ID /// public int OInteriorID { get; set; } /// /// 订单号 /// public string OrderNo { get; set; } /// /// 机型 /// public int ProjectID { get; set; } public int ProductType { get; set; } /// /// 站位 /// public int StationID { get; set; } /// /// 订单状态 /// public int OStatus { get; set; } /// /// 客户 /// public int CustomerAbbr { get; set; } /// /// 页数据最大 /// public int dataMax { get; set; } /// /// 页数据最小 /// public int dataMin { get; set; } /// /// 页 /// public int Pages { get; set; } /// /// 属性 /// public string Property { get; set; } /// /// 输入搜索 /// public string Search { get; set; } /// /// 起 /// public string startTime { get; set; } /// /// 始 /// public string EndTime { get; set; } /// /// 勾选的 站点结果状态 1 pass true 2 false /// public int[] ZTstatus { get; set; } /// /// 站点 /// public int ZTID { get; set; } = 0; /// /// 不良品来源 /// public string company { get; set; } public string inquire { get; set; } /// /// SN号 /// public string Snmark { get; set; } /// /// 今天,三天,7天,30天 /// public int Day { get; set; } /// /// 返修类型 /// public int repair { get; set; } /// /// 失败代码 /// public string FailSteps { get; set; } } }