1
helongyang
2025-12-26 5c238fa340e7a86834c65cf66c514f32d6d28f4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IBasicRepository
{
    /// <summary>
    /// 接口信息仓储接口层
    /// </summary>
    public interface IApiInfoRepository : IRepository<Dt_ApiInfo>
    {
 
    }
}