初始化
This commit is contained in:
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; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user