using IMCS.CCS.Entitys; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace IMCS.CCS.Services { public interface IDictionaryService { Task> GetList(ToolDto vo); //查询详情 Task GetById(int id); //添加 Task Create(ToolDto vo); //更新 Task Update(ToolDto vo); } }