Activity.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 Activity extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 活动列表
  21. * @author csdeshang
  22. * @param type $condition 查询条件
  23. * @param type $pagesize 分页页数
  24. * @param type $order 排序
  25. * @return type
  26. */
  27. public function getActivityList($condition, $pagesize = '', $order = 'activity_sort asc') {
  28. if ($pagesize) {
  29. $res = Db::name('activity')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  30. $this->page_info = $res;
  31. return $res->items();
  32. } else {
  33. return Db::name('activity')->where($condition)->order($order)->select()->toArray();
  34. }
  35. }
  36. /**
  37. * 添加活动
  38. * @author csdeshang
  39. * @param type $data 查询数据
  40. * @return array 一维数组
  41. */
  42. public function addActivity($data)
  43. {
  44. return Db::name('activity')->insertGetId($data);
  45. }
  46. /**
  47. * 更新活动
  48. * @author csdeshang
  49. * @param type $data 活动数据
  50. * @param type $id 活动id
  51. * @return type
  52. */
  53. public function editActivity($data, $id)
  54. {
  55. return Db::name('activity')->where("activity_id='$id' ")->update($data);
  56. }
  57. /**
  58. * 删除活动
  59. * @author csdeshang
  60. * @param type $condition 删除条件
  61. * @return type
  62. */
  63. public function delActivity($condition)
  64. {
  65. return Db::name('activity')->where($condition)->delete();
  66. }
  67. /**
  68. * 根据id查询一条活动
  69. * @author csdeshang
  70. * @param int $id 活动id
  71. * @return array 一维数组
  72. */
  73. public function getOneActivityById($id)
  74. {
  75. return Db::name('activity')->where('activity_id',$id)->find();
  76. }
  77. }