截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

KefuLangLogic.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\logic\kefu;
  20. use app\common\model\kefu\KefuLang;
  21. /**
  22. * 客服术语逻辑层
  23. * Class KefuLangLogic
  24. * @package app\admin\logic\kefu
  25. */
  26. class KefuLangLogic
  27. {
  28. /**
  29. * @notes 获取列表
  30. * @param $limit
  31. * @param $page
  32. * @return array
  33. * @throws \think\db\exception\DbException
  34. * @author cjhao
  35. * @date 2021/11/29 15:11
  36. */
  37. public static function lists(int $shop_id,int $limit,int $page)
  38. {
  39. $list = KefuLang::where(['shop_id'=>$shop_id])->order('sort asc')->paginate([
  40. 'list_rows' => $limit,
  41. 'page' => $page,
  42. ]);
  43. return ['count' => $list->total(), 'lists' => $list->getCollection()];
  44. }
  45. /**
  46. * @notes 新增话术
  47. * @param $post
  48. * @return bool
  49. * @author cjhao
  50. * @date 2021/11/29 15:54
  51. */
  52. public static function add(int $shop_id,array $post)
  53. {
  54. $kefu_lang = new KefuLang();
  55. $kefu_lang->shop_id = $shop_id;
  56. $kefu_lang->title = $post['title'];
  57. $kefu_lang->content = $post['content'];
  58. $kefu_lang->sort = $post['sort'];
  59. return $kefu_lang->save();
  60. }
  61. /**
  62. * @notes 编辑话术
  63. * @param $post
  64. * @return bool
  65. * @author cjhao
  66. * @date 2021/11/29 15:59
  67. */
  68. public static function edit(array $post){
  69. return KefuLang::update($post);
  70. }
  71. /**
  72. * @notes 获取话术
  73. * @param $id
  74. * @return array|\think\Model|null
  75. * @throws \think\db\exception\DataNotFoundException
  76. * @throws \think\db\exception\DbException
  77. * @throws \think\db\exception\ModelNotFoundException
  78. * @author cjhao
  79. * @date 2021/11/29 16:02
  80. */
  81. public static function detail(int $shop_id,int $id){
  82. return KefuLang::where(['id'=>$id,'shop_id'=>$shop_id])->find();
  83. }
  84. /**
  85. * @notes 删除话术
  86. * @param int $id
  87. * @return bool
  88. * @author cjhao
  89. * @date 2021/11/29 16:11
  90. */
  91. public static function del(int $shop_id,int $id){
  92. return KefuLang::where(['id'=>$id,'shop_id'=>$shop_id])->delete();
  93. }
  94. }