Adminlog.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 Adminlog extends BaseModel {
  17. public $page_info;
  18. /**
  19. * 获取日志记录列表
  20. * @author csdeshang
  21. * @param type $condition 查询条件
  22. * @param type $pagesize 分页信息
  23. * @param type $order 排序
  24. * @return type
  25. */
  26. public function getAdminlogList($condition, $pagesize = '', $order) {
  27. if ($pagesize) {
  28. $result = Db::name('adminlog')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  29. $this->page_info = $result;
  30. return $result->items();
  31. } else {
  32. return Db::name('adminlog')->where($condition)->order($order)->select()->toArray();
  33. }
  34. }
  35. /**
  36. * 删除日志记录
  37. * @author csdeshang
  38. * @param type $condition 删除条件
  39. * @return type
  40. */
  41. public function delAdminlog($condition) {
  42. return Db::name('adminlog')->where($condition)->delete();
  43. }
  44. /**
  45. * 获取日志条数
  46. * @author csdeshang
  47. * @param type $condition 查询条件
  48. * @return type
  49. */
  50. public function getAdminlogCount($condition) {
  51. return Db::name('adminlog')->where($condition)->count();
  52. }
  53. /**
  54. * 增加日子
  55. * @author csdeshang
  56. * @param type $data
  57. * @return type
  58. */
  59. public function addAdminlog($data) {
  60. return Db::name('adminlog')->insertGetId($data);
  61. }
  62. }