29 changed files with 45 additions and 38 deletions
@ -1,7 +1,7 @@ |
|||||
using CellularManagement.Domain.Common; |
using CellularManagement.Domain.Common; |
||||
using MediatR; |
using MediatR; |
||||
|
|
||||
namespace CellularManagement.Application.Features.TerminalDevices.Commands.CreateAdbOperation; |
namespace CellularManagement.Application.Features.AdbOperations.Commands.CreateAdbOperation; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 创建ADB操作命令
|
/// 创建ADB操作命令
|
||||
@ -1,7 +1,7 @@ |
|||||
using MediatR; |
using MediatR; |
||||
using CellularManagement.Domain.Common; |
using CellularManagement.Domain.Common; |
||||
|
|
||||
namespace CellularManagement.Application.Features.TerminalDevices.Commands.DeleteAdbOperation; |
namespace CellularManagement.Application.Features.AdbOperations.Commands.DeleteAdbOperation; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 删除ADB操作命令
|
/// 删除ADB操作命令
|
||||
@ -1,7 +1,7 @@ |
|||||
using MediatR; |
using MediatR; |
||||
using CellularManagement.Domain.Common; |
using CellularManagement.Domain.Common; |
||||
|
|
||||
namespace CellularManagement.Application.Features.TerminalDevices.Commands.UpdateAdbOperation; |
namespace CellularManagement.Application.Features.AdbOperations.Commands.UpdateAdbOperation; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 更新ADB操作命令
|
/// 更新ADB操作命令
|
||||
@ -1,7 +1,7 @@ |
|||||
using MediatR; |
using MediatR; |
||||
using CellularManagement.Domain.Common; |
using CellularManagement.Domain.Common; |
||||
|
|
||||
namespace CellularManagement.Application.Features.TerminalDevices.Queries.GetAdbOperationById; |
namespace CellularManagement.Application.Features.AdbOperations.Queries.GetAdbOperationById; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 根据ID获取ADB操作查询
|
/// 根据ID获取ADB操作查询
|
||||
@ -1,7 +1,7 @@ |
|||||
using MediatR; |
using MediatR; |
||||
using CellularManagement.Domain.Common; |
using CellularManagement.Domain.Common; |
||||
|
|
||||
namespace CellularManagement.Application.Features.TerminalDevices.Queries.GetAdbOperations; |
namespace CellularManagement.Application.Features.AdbOperations.Queries.GetAdbOperations; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 获取ADB操作列表查询
|
/// 获取ADB操作列表查询
|
||||
@ -1,7 +1,7 @@ |
|||||
using CellularManagement.Domain.Common; |
using CellularManagement.Domain.Common; |
||||
using MediatR; |
using MediatR; |
||||
|
|
||||
namespace CellularManagement.Application.Features.TerminalDevices.Commands.CreateAtOperation; |
namespace CellularManagement.Application.Features.AtOperations.Commands.CreateAtOperation; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 创建AT操作命令
|
/// 创建AT操作命令
|
||||
@ -1,7 +1,7 @@ |
|||||
using CellularManagement.Domain.Common; |
using CellularManagement.Domain.Common; |
||||
using MediatR; |
using MediatR; |
||||
|
|
||||
namespace CellularManagement.Application.Features.TerminalDevices.Commands.DeleteAtOperation; |
namespace CellularManagement.Application.Features.AtOperations.Commands.DeleteAtOperation; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 删除AT操作命令
|
/// 删除AT操作命令
|
||||
@ -1,7 +1,7 @@ |
|||||
using CellularManagement.Domain.Common; |
using CellularManagement.Domain.Common; |
||||
using MediatR; |
using MediatR; |
||||
|
|
||||
namespace CellularManagement.Application.Features.TerminalDevices.Commands.UpdateAtOperation; |
namespace CellularManagement.Application.Features.AtOperations.Commands.UpdateAtOperation; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 更新AT操作命令
|
/// 更新AT操作命令
|
||||
@ -1,7 +1,7 @@ |
|||||
using MediatR; |
using MediatR; |
||||
using CellularManagement.Domain.Common; |
using CellularManagement.Domain.Common; |
||||
|
|
||||
namespace CellularManagement.Application.Features.TerminalDevices.Queries.GetAtOperationById; |
namespace CellularManagement.Application.Features.AtOperations.Queries.GetAtOperationById; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 根据ID获取AT操作查询
|
/// 根据ID获取AT操作查询
|
||||
@ -1,7 +1,7 @@ |
|||||
using MediatR; |
using MediatR; |
||||
using CellularManagement.Domain.Common; |
using CellularManagement.Domain.Common; |
||||
|
|
||||
namespace CellularManagement.Application.Features.TerminalDevices.Queries.GetAtOperations; |
namespace CellularManagement.Application.Features.AtOperations.Queries.GetAtOperations; |
||||
|
|
||||
/// <summary>
|
/// <summary>
|
||||
/// 获取AT操作列表查询
|
/// 获取AT操作列表查询
|
||||
@ -1,8 +1,9 @@ |
|||||
using System; |
using System; |
||||
using System.Threading; |
using System.Threading; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
using X1.BackendServices.Results; |
||||
|
|
||||
namespace X1.BackendServices.BackendServiceManager |
namespace X1.BackendServices.Interfaces |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// 服务作用域执行器接口
|
/// 服务作用域执行器接口
|
||||
@ -1,6 +1,6 @@ |
|||||
using System; |
using System; |
||||
|
|
||||
namespace X1.BackendServices.BackendServiceManager |
namespace X1.BackendServices.Results |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// 作用域服务操作结果包装类,用于表示作用域服务操作的成功或失败状态
|
/// 作用域服务操作结果包装类,用于表示作用域服务操作的成功或失败状态
|
||||
Loading…
Reference in new issue