You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web/Blog.Core.Model/Logs/GlobalWarningLog.cs

12 lines
312 B

using Blog.Core.Model.Base;
using SqlSugar;
namespace Blog.Core.Model.Logs;
[Tenant("log")]
[SplitTable(SplitType.Month)] //按月分表 (自带分表支持 年、季、月、周、日)
[SugarTable($@"{nameof(GlobalWarningLog)}_{{year}}{{month}}{{day}}")]
public class GlobalWarningLog: BaseLog
{
}