赛亿提成统计系统
<?phpnamespace daswork;class Model{ protected $db; public function __construct(){ $this->db = new \mysqli('localhost', 'root', 'root001', 'test'); } public function query($sql) { return $this->db->query($sql); }}