初始化
This commit is contained in:
22
Face.Domain.ViewModels/Capacity/RequestCapacitySearch.cs
Normal file
22
Face.Domain.ViewModels/Capacity/RequestCapacitySearch.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class RequestCapacitySearch
|
||||
{
|
||||
|
||||
public DateTime? StartDate { get; set; }
|
||||
public DateTime? EndDate { get; set; }
|
||||
public int? PlineID { get; set; }
|
||||
public int? ProjectID { get; set; }
|
||||
public int? StationID { get; set; }
|
||||
public string Customer { get; set; }
|
||||
public string Order { get; set; }
|
||||
public string Internalorder { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
21
Face.Domain.ViewModels/Capacity/RequestQAAjaxSearch.cs
Normal file
21
Face.Domain.ViewModels/Capacity/RequestQAAjaxSearch.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class RequestQAAjaxSearch
|
||||
{
|
||||
/// <summary>
|
||||
/// 机型ID
|
||||
/// </summary>
|
||||
public int ProjectID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 序号
|
||||
/// </summary>
|
||||
public string Number { get; set; }
|
||||
}
|
||||
}
|
||||
28
Face.Domain.ViewModels/Capacity/RequestQALogSearch.cs
Normal file
28
Face.Domain.ViewModels/Capacity/RequestQALogSearch.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
/// <summary>
|
||||
/// 抽检记录查询
|
||||
/// </summary>
|
||||
public class RequestQALogSearch
|
||||
{
|
||||
/// <summary>
|
||||
/// 开始时间
|
||||
/// </summary>
|
||||
public DateTime? StartDate { get; set; }
|
||||
/// <summary>
|
||||
/// 结束数据
|
||||
/// </summary>
|
||||
public DateTime? EndDate { get; set; }
|
||||
/// <summary>
|
||||
/// 机型ID
|
||||
/// </summary>
|
||||
public int ProjectID { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
33
Face.Domain.ViewModels/Capacity/RequestQASubmit.cs
Normal file
33
Face.Domain.ViewModels/Capacity/RequestQASubmit.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class RequestQASubmit
|
||||
{
|
||||
/// <summary>
|
||||
/// 序号
|
||||
/// </summary>
|
||||
public string NumberSubmit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// QA_过程
|
||||
/// </summary>
|
||||
public string QA_CheckProcSubmit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// QA_结果
|
||||
/// </summary>
|
||||
public bool QA_TestResultSubmit { get; set; }
|
||||
|
||||
public string QARemarks { get; set; }
|
||||
|
||||
public int QA_ProjectID { get; set; }
|
||||
|
||||
public int QA_QAStationID { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
33
Face.Domain.ViewModels/Capacity/RequestTestLogSearch.cs
Normal file
33
Face.Domain.ViewModels/Capacity/RequestTestLogSearch.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class RequestTestLogSearch
|
||||
{
|
||||
public int ProjectID { get; set; }
|
||||
public string Number { get; set; }
|
||||
public int? TestLogID { get; set; }
|
||||
|
||||
|
||||
public string KeyWhere { get; set; }
|
||||
public string KeyWord { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class RequestTestLogDateSearch
|
||||
{
|
||||
public int page { get; set; }
|
||||
public int pagesize { get; set; }
|
||||
public int ProjectID { get; set; }
|
||||
|
||||
public DateTime? StartDate { get; set; }
|
||||
public DateTime? EndDate { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
90
Face.Domain.ViewModels/Capacity/ResponseDataQuerySearch.cs
Normal file
90
Face.Domain.ViewModels/Capacity/ResponseDataQuerySearch.cs
Normal file
@@ -0,0 +1,90 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public partial class ResponseDataquerySearch
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 序号集
|
||||
/// </summary>
|
||||
public string ProductNumbers { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
public int numble { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 列表
|
||||
/// </summary>
|
||||
public List<DataQuerySearch> DataQuerySearchList { get; set; }
|
||||
|
||||
public ResponseDataquerySearch()
|
||||
{
|
||||
DataQuerySearchList = new List<DataQuerySearch>();
|
||||
}
|
||||
}
|
||||
|
||||
public class DataQuerySearch
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
public int ID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 站名
|
||||
/// </summary>
|
||||
public string StationName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 操作站
|
||||
/// </summary>
|
||||
public int StationID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 机型ID
|
||||
/// </summary>
|
||||
public int ProjectID { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
public string StartTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 结果
|
||||
/// </summary>
|
||||
public string TestResult { get; set; }
|
||||
|
||||
///// <summary>
|
||||
///// AssemblySn
|
||||
///// </summary>
|
||||
//public string AssemblySn { get; set; }
|
||||
|
||||
///// <summary>
|
||||
///// DevSN
|
||||
///// </summary>
|
||||
//public string DevSN { get; set; }
|
||||
|
||||
///// <summary>
|
||||
///// QA_结果
|
||||
///// </summary>
|
||||
//public string QA_CheckResult { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// DUT_SN
|
||||
/// </summary>
|
||||
public string DUT_SN { get; set; }
|
||||
}
|
||||
}
|
||||
44
Face.Domain.ViewModels/Capacity/ResponseEveryDaySearch.cs
Normal file
44
Face.Domain.ViewModels/Capacity/ResponseEveryDaySearch.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class ResponseEveryDaySearch
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 机型
|
||||
/// </summary>
|
||||
public string ProjectName { get; set; }
|
||||
|
||||
public string OrderNo { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 订单数量
|
||||
/// </summary>
|
||||
public int OrderCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public string CreateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单交期
|
||||
/// </summary>
|
||||
public string DeliveryTime { get; set; }
|
||||
|
||||
public List<Dictionary<string, object>> Rows { get; set; }
|
||||
}
|
||||
|
||||
public class ResponseEveryDate
|
||||
{
|
||||
public int TotalCount { get; set; }
|
||||
public List<DataQuerySearch> DataList { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
82
Face.Domain.ViewModels/Capacity/ResponseQAAjaxSearch.cs
Normal file
82
Face.Domain.ViewModels/Capacity/ResponseQAAjaxSearch.cs
Normal file
@@ -0,0 +1,82 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class ResponseQAAjaxSearch
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
public int numble { get; set; }
|
||||
|
||||
public QAResultVM qaResultVM { get; set; }
|
||||
|
||||
public List<QADataSearch> QADataSearchList { get; set; }
|
||||
|
||||
public ResponseQAAjaxSearch()
|
||||
{
|
||||
QADataSearchList = new List<QADataSearch>();
|
||||
}
|
||||
}
|
||||
|
||||
public class QADataSearch
|
||||
{
|
||||
/// <summary>
|
||||
/// 站ID
|
||||
/// </summary>
|
||||
public int StationID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 站名
|
||||
/// </summary>
|
||||
public string StationName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
public string StartTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 结果
|
||||
/// </summary>
|
||||
public bool TestResult { get; set; }
|
||||
}
|
||||
|
||||
public class QAResultVM
|
||||
{
|
||||
/// <summary>
|
||||
/// 序号集
|
||||
/// </summary>
|
||||
public string ProductNumbers { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 检测结果
|
||||
/// </summary>
|
||||
public bool TestResult { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 检测过程
|
||||
/// </summary>
|
||||
public string CheckProc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目ID
|
||||
/// </summary>
|
||||
public int ProjectID { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// QA站ID
|
||||
/// </summary>
|
||||
public int QAStationID { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
27
Face.Domain.ViewModels/Capacity/ResponseQALogSearch.cs
Normal file
27
Face.Domain.ViewModels/Capacity/ResponseQALogSearch.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class ResponseQALogSearch
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// DUT_SN
|
||||
/// </summary>
|
||||
public string DUT_SN { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
public string StartTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// QA_结果
|
||||
/// </summary>
|
||||
public string QA_CheckResult { get; set; }
|
||||
}
|
||||
}
|
||||
21
Face.Domain.ViewModels/Capacity/ResponseQASubmit.cs
Normal file
21
Face.Domain.ViewModels/Capacity/ResponseQASubmit.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class ResponseQASubmit
|
||||
{
|
||||
/// <summary>
|
||||
/// 总数
|
||||
/// </summary>
|
||||
public int Total { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 今日总数
|
||||
/// </summary>
|
||||
public int TotalToday { get; set; }
|
||||
}
|
||||
}
|
||||
33
Face.Domain.ViewModels/Capacity/VM_TBL_CapacityEveryDay.cs
Normal file
33
Face.Domain.ViewModels/Capacity/VM_TBL_CapacityEveryDay.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class VM_TBL_CapacityEveryDay
|
||||
{
|
||||
/// <summary>
|
||||
/// DUT_SN
|
||||
/// </summary>
|
||||
public string DUT_SN { get; set; }
|
||||
/// <summary>
|
||||
/// TestResult
|
||||
/// </summary>
|
||||
public bool TestResult { get; set; }
|
||||
/// <summary>
|
||||
/// StartTime
|
||||
/// </summary>
|
||||
public DateTime StartTime { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class VM_CapacityIndex
|
||||
{
|
||||
public List<Entities.TBL_Project> ProjectList { get; set; }
|
||||
public List<Entities.TBL_Orders> OrdersList { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
18
Face.Domain.ViewModels/Capacity/VM_TBL_CapacityIndex.cs
Normal file
18
Face.Domain.ViewModels/Capacity/VM_TBL_CapacityIndex.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class VM_TBL_CapacityIndex
|
||||
{
|
||||
/// <summary>
|
||||
/// 站名
|
||||
/// </summary>
|
||||
public List<Entities.TBL_Project> ProjectList { get; set; }
|
||||
|
||||
public string[] SearchKey { get; set; }
|
||||
}
|
||||
}
|
||||
36
Face.Domain.ViewModels/Capacity/VM_TBL_ToDayCapacity.cs
Normal file
36
Face.Domain.ViewModels/Capacity/VM_TBL_ToDayCapacity.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Face.Domain.ViewModels
|
||||
{
|
||||
public class VM_TBL_ToDayCapacity
|
||||
{
|
||||
/// <summary>
|
||||
/// 站名
|
||||
/// </summary>
|
||||
public string StationName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 总数
|
||||
/// </summary>
|
||||
public int Total { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 有效值
|
||||
/// </summary>
|
||||
public int EffectiveNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Pass数
|
||||
/// </summary>
|
||||
public int PassNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Fail数
|
||||
/// </summary>
|
||||
public int FailNum { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user