团餐订单
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.
 
 

18 lines
399 B

  1. using Microsoft.AspNetCore.Mvc;
  2. using System.Threading.Tasks;
  3. namespace BPA.KitChen.WeChat.WechatServer.Service
  4. {
  5. public interface IWechatNotityService
  6. {
  7. /// <summary>
  8. /// 支付回调
  9. /// </summary>
  10. Task<IActionResult> PayNotity();
  11. /// <summary>
  12. /// 退款回调
  13. /// </summary>
  14. Task<IActionResult> RefundNotity();
  15. }
  16. }