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