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