Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Service/ServiceTemplate/DictionaryService.cs
陈淳 e4da8d4f15 对接ruoyi接口
用户、角色、菜单查询部分
2022-09-06 19:32:32 +08:00

15 lines
370 B
C#

using SqlSugar;
using Yi.Framework.Interface;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Service
{
public partial class DictionaryService : BaseService<DictionaryEntity>, IDictionaryService
{
public DictionaryService(IRepository<DictionaryEntity> repository) : base(repository)
{
}
}
}