Storesnscomment.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 Storesnscomment extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 店铺动态评论列表
  21. * @access public
  22. * @author csdeshang
  23. * @param array $condition 条件
  24. * @param string $field 字段
  25. * @param string $order 排序
  26. * @param int $limit 限制
  27. * @param int $pagesize 分页
  28. * @return array
  29. */
  30. public function getStoresnscommentList($condition, $field = '*', $order = 'storesnscomm_id desc', $limit = 0, $pagesize = 0) {
  31. if($pagesize){
  32. $res= Db::name('storesnscomment')->where($condition)->field($field)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  33. $this->page_info=$res;
  34. return $res->items();
  35. }else{
  36. return Db::name('storesnscomment')->where($condition)->field($field)->order($order)->select()->toArray();
  37. }
  38. }
  39. /**
  40. * 店铺评论数量
  41. * @access public
  42. * @author csdeshang
  43. * @param type $condition 条件
  44. * @return type
  45. */
  46. public function getStoresnscommentCount($condition) {
  47. return Db::name('storesnscomment')->where($condition)->count();
  48. }
  49. /**
  50. * 获取单条评论
  51. * @access public
  52. * @author csdeshang
  53. * @param array $condition 条件
  54. * @param string $field 字段
  55. * @return array
  56. */
  57. public function getStoresnscommentInfo($condition, $field = '*') {
  58. return Db::name('storesnscomment')->where($condition)->field($field)->find();
  59. }
  60. /**
  61. * 保存店铺评论
  62. * @access public
  63. * @author csdeshang
  64. * @param array $data 数据
  65. * @return boolean
  66. */
  67. public function addStoresnscomment($data) {
  68. return Db::name('storesnscomment')->insertGetId($data);
  69. }
  70. /**
  71. * 更新店铺评论
  72. * @access public
  73. * @author csdeshang
  74. * @param type $update 更新数据
  75. * @param type $condition 条件
  76. * @return type
  77. */
  78. public function editStoresnscomment($update, $condition) {
  79. return Db::name('storesnscomment')->where($condition)->update($update);
  80. }
  81. /**
  82. * 删除店铺动态评论
  83. * @access public
  84. * @author csdeshang
  85. * @param array $condition 条件
  86. * @return boolean
  87. */
  88. public function delStoresnscomment($condition) {
  89. return Db::name('storesnscomment')->where($condition)->delete();
  90. }
  91. }