Files
Web_Faces_Prod/Face.Domain.ViewModels/Capacity/VM_TBL_CapacityEveryDay.cs
2025-11-25 17:41:57 +08:00

34 lines
729 B
C#

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; }
}
}