mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
9 lines
259 B
C#
9 lines
259 B
C#
using SqlSugar;
|
|
|
|
namespace EggLink.DanhengServer.Database.Tutorial;
|
|
|
|
[SugarTable("battle_college_data")]
|
|
public class BattleCollegeData : BaseDatabaseDataHelper
|
|
{
|
|
[SugarColumn(IsJson = true)] public List<int> FinishedCollegeIdList { get; set; } = [];
|
|
} |