Complainsubject.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 Complainsubject extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 增加投诉主题
  21. * @access public
  22. * @author csdeshang
  23. * @param array $data 参数内容
  24. * @return bool
  25. */
  26. public function addComplainsubject($data)
  27. {
  28. return Db::name('complainsubject')->insertGetId($data);
  29. }
  30. /**
  31. * 更新
  32. * @access public
  33. * @author csdeshang
  34. * @param array $update_array 更新数据
  35. * @param array $condition 更新条件
  36. * @return bool
  37. */
  38. public function editComplainsubject($update_array, $condition)
  39. {
  40. return Db::name('complainsubject')->where($condition)->update($update_array);
  41. }
  42. /**
  43. * 删除投诉主题
  44. * @access public
  45. * @author csdeshang
  46. * @param array $condition 检索条件
  47. * @return bool
  48. */
  49. public function delComplainsubject($condition)
  50. {
  51. return Db::name('complainsubject')->where($condition)->delete();
  52. }
  53. /**
  54. * 获得投诉主题列表
  55. * @access public
  56. * @author csdeshang
  57. * @param array $condition 检索条件
  58. * @param int $pagesize 分页信息
  59. * @param str $order 排序
  60. * @return array
  61. */
  62. public function getComplainsubject($condition = '', $pagesize = '',$order = 'complainsubject_id desc')
  63. {
  64. if($pagesize){
  65. $res= Db::name('complainsubject')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  66. $this->page_info=$res;
  67. return $res->items();
  68. }else{
  69. return Db::name('complainsubject')->where($condition)->order($order)->select()->toArray();
  70. }
  71. }
  72. /**
  73. * 获得有效投诉主题列表
  74. * @access public
  75. * @author csdeshang
  76. * @param array $condition 检索条件
  77. * @param int $pagesize 分页信息
  78. * @param str $order 排序
  79. * @return array
  80. */
  81. public function getActiveComplainsubject($condition = '', $pagesize = '',$order='complainsubject_id desc ')
  82. {
  83. //搜索条件
  84. $condition[] = array('complainsubject_state','=',1);
  85. if($pagesize){
  86. $res=Db::name('complainsubject')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  87. $this->page_info=$res;
  88. return $res->items();
  89. }else{
  90. return Db::name('complainsubject')->where($condition)->order($order)->select()->toArray();
  91. }
  92. }
  93. }