refill_query_err.model.php 322 B

1234567891011121314151617
  1. <?php
  2. defined('InShopNC') or exit('Access Invalid!');
  3. class refill_query_errModel extends Model
  4. {
  5. public function __construct()
  6. {
  7. parent::__construct('refill_query_err');
  8. }
  9. public function add($insert)
  10. {
  11. $insert['query_time'] = time();
  12. return $this->insert($insert);
  13. }
  14. }