Rcblog.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 数据层模型
  15. */
  16. class Rcblog extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 获取列表
  21. * @access public
  22. * @author csdeshang
  23. * @param array $condition 条件
  24. * @param string $pagesize 分页
  25. * @param string $order 排序
  26. * @return array
  27. */
  28. public function getRechargecardBalanceLogList($condition, $pagesize, $order)
  29. {
  30. $res =Db::name('rcblog')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  31. $this->page_info=$res;
  32. return $res->items();
  33. }
  34. }