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