mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
10 lines
263 B
C#
10 lines
263 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; } = [];
|
|
} |