namespace SafeCampus.Application.Services; public interface IApiBaseInterface where TS : BasePageInput where T : class where TList : class { /// /// 添加 /// /// /// public Task Add(T vm); /// /// 删除 /// /// /// public Task Delete(long Id); /// /// 修改 /// /// /// public Task Update(T vm); /// /// 根据id获取信息 /// /// /// public Task GetInfo(long Id); /// /// 获取列表 /// /// /// public Task> GetList(TS search); }