IBaseDictionaryService.cs 315 B

123456789101112131415
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Text;
  6. using Wms.Screen.Dto.Dadihaiyang.Response;
  7. using Wms.Screen.SqlSugar.Model;
  8. namespace Wms.Screen.Service.IService
  9. {
  10. public interface IBaseDictionaryService
  11. {
  12. List<SysDictionary> GetBaseDictionaryList();
  13. }
  14. }