You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
54 lines
1.5 KiB
using LIS_Platform_Linker.Dtos.LIS;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LIS_Platform_Linker.Services.Interfaces
|
|
{
|
|
public interface IReceiverService
|
|
{
|
|
/// <summary>
|
|
/// 查询申请单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ActionResult QueryApply(QueryApplyLISRequest queryApplyLISRequest);
|
|
|
|
/// <summary>
|
|
/// 撤销签收申请单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ActionResult CancelRegApply(string jsonString);
|
|
|
|
/// <summary>
|
|
/// 拒绝签收申请单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ActionResult RejectApply(string jsonString);
|
|
|
|
/// <summary>
|
|
/// 发送报告单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ActionResult SubmitReport(SubmitReportLISRequest submitReportRequest);
|
|
|
|
/// <summary>
|
|
/// 召回报告单
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ActionResult CallbackReport(string jsonString);
|
|
|
|
/// <summary>
|
|
/// 发送PDF报告
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ActionResult ImportPDF(string jsonString);
|
|
|
|
/// <summary>
|
|
/// 查询申请单-按时间
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ActionResult QueryApplyByTime(string jsonString);
|
|
}
|
|
}
|
|
|