HaniBlindBox/server/php/app/common/model/UserVip.php
2026-01-01 20:46:07 +08:00

29 lines
535 B
PHP

<?php
namespace app\common\model;
use app\common\model\Base;
use think\Model;
use app\common\model\ProfitMoney;
use app\common\model\ProfitIntegral;
use app\common\model\ProfitScore;
class UserVip extends Base
{
// 设置当前模型对应的完整数据表名称
protected $table = 'user_vip';
/**
* 获取单条数据
*/
public static function getInfo($where = [], $field = '*')
{
$data = self::where($where)
->field($field)
->find();
return $data;
}
}