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