13 lines
241 B
C#
13 lines
241 B
C#
using Service.Interface;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
/// <summary>
|
|
/// 网关管理 服务实现
|
|
/// </summary>
|
|
public class GatewayService : IGatewayService
|
|
{
|
|
// TODO: 实现 网关管理 相关方法
|
|
}
|
|
}
|