IDictionaryService.cs 448 B

12345678910111213141516171819202122
  1. using IMCS.CCS.Entitys;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace IMCS.CCS.Services
  6. {
  7. public interface IDictionaryService
  8. {
  9. Task<List<Dictionary>> GetList(Dictionary vo);
  10. //查询详情
  11. Task<Dictionary> GetById(int id);
  12. //添加
  13. Task<bool> Create(Dictionary vo);
  14. //更新
  15. Task<bool> Update(Dictionary vo);
  16. }
  17. }