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