Laservall_manager_system/VOL.Sys/IRepositories/System/ISys_DictionaryRepository.cs

22 lines
487 B
C#
Raw Normal View History

2025-09-25 14:37:10 +08:00
/*
*Authorjxx
*Contact283591387@qq.com
*Date2018-07-01
*
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Core.BaseProvider;
using VOL.Entity.DomainModels;
using VOL.Core.Extensions.AutofacManager;
namespace VOL.Sys.IRepositories
{
public partial interface ISys_DictionaryRepository : IDependency,IRepository<Sys_Dictionary>
{
}
}