FM/Assets/Scripts/Runtime/Generate/Excel2CS/ExcelManager.cs

21 lines
650 B
C#
Raw Normal View History

2025-06-17 09:31:12 +08:00
namespace Data
{
2025-04-26 21:05:13 +08:00
public static class ExcelManager
{
private static AgreementTermsDataExcel _agreementterms;
2025-07-02 10:24:01 +08:00
private static InventoryDataExcel _inventory;
2025-07-10 23:16:27 +08:00
private static NoteBookInformationDataExcel _notebookinformation;
2025-04-26 21:05:13 +08:00
public static AgreementTermsDataExcel AgreementTerms => _agreementterms;
2025-07-02 10:24:01 +08:00
public static InventoryDataExcel Inventory => _inventory;
2025-07-10 23:16:27 +08:00
public static NoteBookInformationDataExcel NoteBookInformation => _notebookinformation;
2025-04-26 21:05:13 +08:00
static ExcelManager()
{
_agreementterms = new AgreementTermsDataExcel();
2025-07-02 10:24:01 +08:00
_inventory = new InventoryDataExcel();
2025-07-10 23:16:27 +08:00
_notebookinformation = new NoteBookInformationDataExcel();
2025-04-26 21:05:13 +08:00
}
2025-06-17 09:31:12 +08:00
}}