新增多语言管理

This commit is contained in:
不做码农
2022-05-06 22:12:51 +08:00
parent 854a05cd5d
commit 1d9ec93e12
7 changed files with 479 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using Infrastructure.Attribute;
using ZR.Repository.System;
using ZR.Model.Models;
namespace ZR.Repository
{
/// <summary>
/// 多语言配置仓储
///
/// @author zr
/// @date 2022-05-06
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class CommonLangRepository : BaseRepository<CommonLang>
{
#region
#endregion
}
}