IWcsActionAddressService.cs 467 B

12345678910111213141516171819202122
  1. using WCS.Entitys;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WCS.Service
  6. {
  7. public interface IWcsActionAddressService
  8. {
  9. List<WcsActionAddress> GetList(WcsActionAddress vo);
  10. //查询详情
  11. Task<WcsActionAddress> GetById(int id);
  12. //添加
  13. Task<bool> Create(WcsActionAddress vo);
  14. //更新
  15. Task<bool> Update(WcsActionAddress vo);
  16. }
  17. }