[성현모] master모드 추가

This commit is contained in:
SHM
2025-11-21 14:09:00 +09:00
parent 704ec151e6
commit 4eb29fa4fb
7 changed files with 236 additions and 47 deletions

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

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