赛亿提成统计系统

Model.php 228B

1234567891011121314
  1. <?php
  2. namespace daswork;
  3. class Model
  4. {
  5. protected $db;
  6. public function __construct(){
  7. $this->db = new \mysqli('localhost', 'root', 'root001', 'test');
  8. }
  9. public function query($sql) {
  10. return $this->db->query($sql);
  11. }
  12. }