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