12345678910111213141516171819202122 |
- using WCS.Entitys;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace WCS.Services
- {
- public interface IWcsActionService
- {
- List<WcsAction> GetList(WcsAction vo);
-
- //查询详情
- Task<WcsAction> GetById(int id);
- //添加
- Task<bool> Create(WcsAction vo);
- //更新
- Task<bool> Update(WcsAction vo);
-
- }
- }
|