✨
This commit is contained in:
23
StopShopping.Services/IReplyService.cs
Normal file
23
StopShopping.Services/IReplyService.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using StopShopping.Services.Models.Req;
|
||||
using StopShopping.Services.Models.Resp;
|
||||
|
||||
namespace StopShopping.Services;
|
||||
|
||||
/// <summary>
|
||||
/// 竞标服务
|
||||
/// </summary>
|
||||
public interface IReplyService
|
||||
{
|
||||
/// <summary>
|
||||
/// 提交竞标
|
||||
/// </summary>
|
||||
/// <param name="model"></param>
|
||||
/// <returns></returns>
|
||||
Task<ApiResponse> ReplyAsync(ReplyParams model);
|
||||
/// <summary>
|
||||
/// 查看竞标列表
|
||||
/// </summary>
|
||||
/// <param name="model"></param>
|
||||
/// <returns></returns>
|
||||
Task<ApiResponse<List<Reply>>> GetRepliesAsync(RequestIdParams model);
|
||||
}
|
||||
Reference in New Issue
Block a user