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.
22 lines
612 B
22 lines
612 B
using Znyc.CloudCar.Model.ViewModels.ReportsCallBack;
|
|
|
|
namespace Znyc.CloudCar.IServices.User
|
|
{
|
|
public interface IUserCardService
|
|
{
|
|
/// <summary>
|
|
/// 新增信息
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="cardId"></param>
|
|
/// <param name="time"></param>
|
|
/// <returns></returns>
|
|
Task AddUserCardAsync(long userId, long cardId, int time);
|
|
|
|
/// <summary>
|
|
/// 优惠卡到期禁用
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> UpdateUserCardAsync();
|
|
}
|
|
}
|
|
|