Feedback.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 数据层模型
  14. */
  15. class Feedback extends BaseModel {
  16. public $page_info;
  17. /**
  18. * 列表
  19. * @access public
  20. * @author csdeshang
  21. * @param array $condition 查询条件
  22. * @param int $pagesize 分页数
  23. * @param string $order 排序
  24. * @return array
  25. */
  26. public function getFeedbackList($condition, $pagesize = 10, $order = 'fb_id desc') {
  27. $list = Db::name('feedback')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  28. $this->page_info=$list;
  29. return $list;
  30. }
  31. /**
  32. * 新增
  33. * @access public
  34. * @author csdeshang
  35. * @param array $data 参数内容
  36. * @return bool 布尔类型的返回结果
  37. */
  38. public function addFeedback($data) {
  39. return Db::name('feedback')->insertGetId($data);
  40. }
  41. /**
  42. * 删除
  43. * @access public
  44. * @author csdeshang
  45. * @param int $condition 条件
  46. * @return bool 布尔类型的返回结果
  47. */
  48. public function delFeedback($condition) {
  49. return Db::name('feedback')->where($condition)->delete();
  50. }
  51. }
  52. ?>