Files
Api/DouyinApi.Model/Logs/GlobalWarningLog.cs

12 lines
312 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
using DouyinApi.Model.Base;
using SqlSugar;
namespace DouyinApi.Model.Logs;
[Tenant("log")]
[SplitTable(SplitType.Month)] //按月分表 (自带分表支持 年、季、月、周、日)
[SugarTable($@"{nameof(GlobalWarningLog)}_{{year}}{{month}}{{day}}")]
public class GlobalWarningLog: BaseLog
{
}