Characterization Data with Static Site

This commit is contained in:
2024-09-23 10:27:36 -07:00
parent 4c2bef71ec
commit 018382e218
11 changed files with 273 additions and 130 deletions

View File

@ -0,0 +1,28 @@
namespace OI.Metrology.Shared.DataModels;
public class WaferCounterArchive
{
public long ID { get; set; }
public DateTime InsertDate { get; set; }
public Guid AttachmentID { get; set; }
public string? Title { get; set; }
public DateTime Date { get; set; }
public long ToolTypeID { get; set; }
public string? ToolTypeName { get; set; }
public string? MesEntity { get; set; }
public string? Employee { get; set; }
public string? Layer { get; set; }
public string? PSN { get; set; }
public string? RDS { get; set; }
public string? Reactor { get; set; }
public string? Recipe { get; set; }
public string? Zone { get; set; }
public string? SlotMap { get; set; }
public string? Text { get; set; }
public int? Total { get; set; }
}

View File

@ -1,3 +1,6 @@
using OI.Metrology.Shared.DataModels;
using System.Collections.ObjectModel;
namespace OI.Metrology.Shared.Models.Stateless;
public interface IFileShareRepository
@ -7,9 +10,10 @@ public interface IFileShareRepository
void MoveFile(string from, string to);
Uri Append(Uri uri, params string[] paths);
void FileWrite(string path, string contents);
ReadOnlyCollection<ToolTypeNameId> GetEquipmentIds();
HttpResponseMessage ReadFile(HttpClient httpClient, Uri uri);
void CopyFile(HttpClient httpClient, string from, string to);
void MoveFile(HttpClient httpClient, string from, string to);
List<CharacterizationInfo> GetArchiveData(CharacterizationParameters characterizationParameters);
List<NginxFileSystemSortable> GetNginxFileSystemSortableCollection(HttpClient httpClient, Uri uri, string? endsWith);
ReadOnlyCollection<CharacterizationInfo> GetArchiveData(CharacterizationParameters characterizationParameters);
ReadOnlyCollection<NginxFileSystemSortable> GetNginxFileSystemSortableCollection(HttpClient httpClient, Uri uri, string? endsWith);
}