add:商户认证反馈

This commit is contained in:
chenbo 2023-09-13 20:44:08 +08:00
parent a332288cac
commit 57b3271cf4

@ -25,6 +25,7 @@ use app\common\logic\contract\ContractLogic;
use app\common\model\ShopContract;
use app\common\model\ShopMerchant;
use app\Request;
use think\facade\Db;
/**
@ -153,4 +154,16 @@ class ShopContractController extends BaseAdminController
}
return $this->fail(ContractLogic::getError());
}
//**发送短信 */ 接口可能要做调整
public function postsms()
{
$params = $this->request->param();
$re = ShopContractLogic::postsms($params);
if (!$re) {
return $this->fail(ShopContractLogic::getError());
}
return $this->success('成功');
}
}