阶段性更新,没有实质性的功能

This commit is contained in:
2020-09-28 15:10:02 +08:00
parent 8c81c76aa0
commit 996ed300f5
119 changed files with 2745 additions and 2666 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace XuanChen\Coupon\Contracts;
interface CouponContracts
{
//发券接口
function grant();
/**
* Notes: 查询卡券详情
* @Author: 玄尘
* @Date : 2020/6/29 15:15
* @return mixed
*/
function detail();
//作废接口
function destroy();
/**
* Notes: 核销执行入口
* @Author: 玄尘
* @Date : 2020/6/29 14:49
* @return mixed
*/
function start();
}