Informsubject.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 Informsubject 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 addInformsubject($data)
  27. {
  28. return Db::name('informsubject')->insertGetId($data);
  29. }
  30. /**
  31. * 更新
  32. * @access public
  33. * @author csdeshang
  34. * @param array $update_array 数据
  35. * @param array $where_array 条件
  36. * @return bool
  37. */
  38. public function editInformsubject($update_array, $where_array)
  39. {
  40. return Db::name('informsubject')->where($where_array)->update($update_array);
  41. }
  42. /**
  43. * 删除
  44. * @access public
  45. * @author csdeshang
  46. * @param array $condition 条件
  47. * @return bool
  48. */
  49. public function delInformsubject($condition)
  50. {
  51. return Db::name('informsubject')->where($condition)->delete();
  52. }
  53. /**
  54. * 获得列表
  55. * @access public
  56. * @author csdeshang
  57. * @param array $condition 查询条件
  58. * @param int $pagesize 分页
  59. * @param string $field 字段
  60. * @param string $order 排序
  61. * @return array
  62. */
  63. public function getInformsubjectList($condition = '', $pagesize = '', $field = '',$order='informsubject_id asc')
  64. {
  65. if($pagesize){
  66. $res = Db::name('informsubject')->field($field)->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  67. $this->page_info = $res;
  68. return $res->items();
  69. }else{
  70. return Db::name('informsubject')->field($field)->where($condition)->order($order)->select()->toArray();
  71. }
  72. }
  73. /**
  74. * 获取单个信息
  75. * @access public
  76. * @author csdeshang
  77. * @param type $condition 查询条件
  78. * @return type
  79. */
  80. public function getOneInformsubject($condition){
  81. return Db::name('informsubject')->where($condition)->find();
  82. }
  83. }