dashboard
repositories
filestore
activity
search
login
main
/
companyProjecet
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
修复添加、编辑名片模板背景图为固定尺寸问题
quanwei
2025-11-03
adf46e209a824f5d206fe549a252fd0184533b3a
[companyProjecet.git]
/
admin
/
app
/
api
/
service
/
order
/
paysuccess
/
source
/
AssemblePaySuccessService.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
namespace app\api\service\order\paysuccess\source;
/**
* 拼团订单支付成功后的回调
*/
class AssemblePaySuccessService
{
/**
* 回调方法
*/
public function onPaySuccess($order)
{
return true;
}
}