bonus_share.model.php 351 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: stanley-king
  5. * Date: 2016/11/17
  6. * Time: 上午11:36
  7. */
  8. defined('InShopNC') or exit('Access Invalid!');
  9. class bonus_shareModel extends Model
  10. {
  11. public function __construct() {
  12. parent::__construct('bonus_share');
  13. }
  14. public function getAll()
  15. {
  16. return $this->select();
  17. }
  18. }