17 lines
415 B
C#
17 lines
415 B
C#
using New_College.Common.Helper;
|
|
using New_College.IServices.BASE;
|
|
using New_College.Model.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.IServices
|
|
{
|
|
public interface IWeiChatPayServicesV3 : IBaseServices<V_OrderInfo>
|
|
{
|
|
Task<string> QrCodePay(WeChatPayTransactionsNativeQuery viewModel);
|
|
}
|
|
}
|