24 lines
577 B
C#
24 lines
577 B
C#
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);
|
|
}
|