Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Service/ServiceTemplate/DictionaryService.cs

15 lines
370 B
C#
Raw Normal View History

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)
{
}
}
}