2025-05-09 10:20:30 +08:00

21 lines
334 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using ZXKFramework;
public class ShiTuData : Model
{
public ExcelData excelData = new ExcelData();
public override string Name => "ShiTuData";
public void Init()
{
excelData.Init();
}
public void ToRest()
{
}
}