| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace addons\YunfastPay\common\services\trans;
- /**
- * 支付接口类
- * @package addons\YunfastPay\common\services\trans
- */
- interface TransInterface
- {
- /**
- * 获取请求参数
- *
- * @return array
- */
- public function getTransData(string $mchtCd) :array;
- /**
- * 交易码
- *
- * @return string
- */
- public function getTrscode() :string;
- /**
- * 产品编号
- *
- * @return string
- */
- public function getProCd() :string;
- /**
- * 费率通道
- *
- * @return integer
- */
- public function getChanelType() :int;
- }
|