26 lines
567 B
C#
26 lines
567 B
C#
using LiveForum.Code.Base;
|
|
using LiveForum.Model.Dto.Flowers;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LiveForum.IService.Flowers
|
|
{
|
|
/// <summary>
|
|
/// 送花服务接口
|
|
/// </summary>
|
|
public interface IFlowersService
|
|
{
|
|
/// <summary>
|
|
/// 送花
|
|
/// </summary>
|
|
/// <param name="request">请求参数</param>
|
|
/// <returns></returns>
|
|
Task<BaseResponse<SendFlowerRespDto>> SendFlower(SendFlowerReq request);
|
|
}
|
|
}
|
|
|