[성현모] master모드 추가
This commit is contained in:
18
Projects/NetStandard/CIAMaster/Models/MasterReport.cs
Normal file
18
Projects/NetStandard/CIAMaster/Models/MasterReport.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace CIAMaster.Models
|
||||
{
|
||||
public class MasterReportTable
|
||||
{
|
||||
public List<MasterReport> MasterReport { get; set; } = new List<MasterReport>();
|
||||
}
|
||||
|
||||
public class MasterReport
|
||||
{
|
||||
public string ProductID { get; set; }
|
||||
public DateTime Time { get; set; }
|
||||
public string Result { get; set; }
|
||||
}
|
||||
}
|
||||
26
Projects/NetStandard/CIAMaster/Models/MasterTable.cs
Normal file
26
Projects/NetStandard/CIAMaster/Models/MasterTable.cs
Normal file
@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace CIAMaster.Models
|
||||
{
|
||||
public class MasterTable
|
||||
{
|
||||
public List<MasterTime> MasterTime { get; set; } = new List<MasterTime>();
|
||||
public List<MasterProduct> MasterProduct { get; set; } = new List<MasterProduct>();
|
||||
}
|
||||
|
||||
public class MasterTime
|
||||
{
|
||||
public DateTime Time { get; set; }
|
||||
public bool Avtive { get; set; }
|
||||
}
|
||||
|
||||
public class MasterProduct
|
||||
{
|
||||
public int Order { get; set; }
|
||||
public string ProductID { get; set; }
|
||||
public string Result { get; set; }
|
||||
public bool Active { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user