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