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