Blog.Core/Blog.Core.Model/Logs/GlobalInformationLog.cs

12 lines
317 B
C#
Raw Normal View History

2023-04-06 22:40:05 +08:00
using Blog.Core.Model.Base;
using SqlSugar;
namespace Blog.Core.Model.Logs;
[Tenant("log")]
2023-12-13 11:04:04 +08:00
[SplitTable(SplitType.Month)] //按月分表 (自带分表支持 年、季、月、周、日)
2023-04-06 22:40:05 +08:00
[SugarTable($@"{nameof(GlobalInformationLog)}_{{year}}{{month}}{{day}}")]
public class GlobalInformationLog : BaseLog
{
}