Consult.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 Consult extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 咨询数量
  21. * @access public
  22. * @author csdeshang
  23. * @param array $condition 检索条件
  24. * @return int
  25. */
  26. public function getConsultCount($condition)
  27. {
  28. return Db::name('consult')->where($condition)->count();
  29. }
  30. /**
  31. * 添加咨询
  32. * @access public
  33. * @author csdeshang
  34. * @param array $data 参数内容
  35. * @return int
  36. */
  37. public function addConsult($data)
  38. {
  39. return Db::name('consult')->insertGetId($data);
  40. }
  41. /**
  42. * 商品咨询列表
  43. * @access public
  44. * @author csdeshang
  45. * @param array $condition 检索条件
  46. * @param str $field 字段
  47. * @param int $pagesize 分页信息
  48. * @param str $order 排序
  49. * @return array
  50. */
  51. public function getConsultList($condition, $field = '*', $pagesize=10, $order = 'consult_id desc')
  52. {
  53. $res=Db::name('consult')->where($condition)->field($field)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  54. $this->page_info=$res;
  55. return $res->items();
  56. }
  57. /**
  58. * 获取咨询信息
  59. * @access public
  60. * @author csdeshang
  61. * @param array $condition 咨询条件
  62. * @return array
  63. */
  64. public function getConsultInfo($condition)
  65. {
  66. return Db::name('consult')->where($condition)->find();
  67. }
  68. /**
  69. * 删除咨询
  70. * @access public
  71. * @author csdeshang
  72. * @param array $condition 检索条件
  73. */
  74. public function delConsult($condition)
  75. {
  76. return Db::name('consult')->where($condition)->delete();
  77. }
  78. /**
  79. * 回复咨询
  80. * @access public
  81. * @author csdeshang
  82. * @param array $condition 条件
  83. * @param array $data 参数内容
  84. * @return type
  85. */
  86. public function editConsult($condition, $data)
  87. {
  88. $data['consult_replytime'] = TIMESTAMP;
  89. return Db::name('consult')->where($condition)->update($data);
  90. }
  91. }