初始化代码

This commit is contained in:
2025-08-11 10:22:05 +08:00
commit ebd8d85201
4206 changed files with 753018 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace app\api\model;
use think\Model;
use think\Db;
class CanRecharge extends Model
{
public function get_can_recharge_list()
{
$map = [];
$map[] = ['is_delete', '=', 1];
$list = Db::name('can_recharge')->field('crid,money,integral')->where($map)->select();
return ['code' => 200, 'msg' => '获取成功', 'data' => $list];
}
}