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