You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
C#
58 lines
1.9 KiB
C#
using Furion.DependencyInjection;
|
|
using Furion.DynamicApiController;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 服务流程管理
|
|
/// </summary>
|
|
[ApiDescriptionSettings("Application", Name = "ServiceWorkFlowManage", Order = 10)]
|
|
public class ServiceWorkFlowManageService : IServiceWorkFlowManageService, IDynamicApiController, ITransient
|
|
{
|
|
public ServiceWorkFlowManageService()
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// 推送状态
|
|
/// </summary>
|
|
/// <param name="info">服务流程详情</param>
|
|
/// <returns>返回回执</returns>
|
|
[HttpPost("/ServiceWorkFlowManage/PushStatus")]
|
|
public async Task<TaskManageOrderResultDto> PushStatus([FromBody] ServiceWorkFlowBaseDto info)
|
|
{
|
|
return new TaskManageOrderResultDto();
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 查询单票业务单服务项目查询
|
|
/// </summary>
|
|
/// <param name="info">服务流程详情</param>
|
|
/// <returns>返回回执</returns>
|
|
[HttpPost("/ServiceWorkFlowManage/QuerySingleBusinessPerServiceProject")]
|
|
public async Task<TaskManageOrderResultDto> QuerySingleBusinessPerServiceProject(ServiceWorkFlowBaseDto info)
|
|
{
|
|
return new TaskManageOrderResultDto();
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 查询单票所有相关服务项目查询
|
|
/// </summary>
|
|
/// <param name="info">服务流程详情</param>
|
|
/// <returns>返回回执</returns>
|
|
[HttpPost("/ServiceWorkFlowManage/QuerySingleBusinessAll")]
|
|
public async Task<TaskManageOrderResultDto> QuerySingleBusinessAll(ServiceWorkFlowBaseDto info)
|
|
{
|
|
return new TaskManageOrderResultDto();
|
|
}
|
|
}
|
|
|
|
}
|