IBasDictionaryService.cs 374 B

123456789101112131415
  1. using DapperORMCore.Model.CoreModel;
  2. using NXWMS.Model.AppModels.Result.Common;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace NXWMS.IService.NXWMS.Common
  9. {
  10. public interface IBasDictionaryService
  11. {
  12. OperateResultInfo<List<BasDictionaryResult>> GetBasDictionaryData();
  13. }
  14. }