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