Files
2025-03-05 19:42:01 +08:00

21 lines
532 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.Collections.Generic;
using WaterCloud.Code;
using WaterCloud.DataBase;
namespace WaterCloud.Domain.SystemSecurity
{
/// <summary>
/// 创 建:超级管理员
/// 日 期2024-07-19 19:42
/// 描 述操作log种子
/// </summary>
public class LogSeedData : ISqlSugarEntitySeedData<LogEntity>
{
[IgnoreSeedDataUpdate]
public IEnumerable<LogEntity> SeedData()
{
var data = "";
return data.ToObject<List<LogEntity>>();
}
}
}