IWcsActionRepository.cs 436 B

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