- using QM.OrmSqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using QM.KJGH.CGGL.Model.Ghxms;
- using QM.KJGH.Model.KJGH;
- namespace QM.KJGH.CGGL.IRepository
- {
- public interface ICfgDictRepository : ISqlSugarRepository<CfgDict>
- {
- Task<List<CfgDictView>> QueryList(string dicType);
- }
- }
|