Message.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. /**
  17. * 短信发送管理
  18. * Class Message
  19. * @package app\store\controller
  20. */
  21. class Message extends Controller
  22. {
  23. /**
  24. * 绑定数据表
  25. * @var string
  26. */
  27. protected $table = 'StoreMemberSms';
  28. /**
  29. * 短信发送管理
  30. * @auth true
  31. * @menu true
  32. * @throws \think\Exception
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. * @throws \think\exception\DbException
  36. * @throws \think\exception\PDOException
  37. */
  38. public function index()
  39. {
  40. $this->title = '短信发送管理';
  41. $query = $this->_query($this->table)->like('phone,content,result');
  42. $query->dateBetween('create_at')->order('id desc')->page();
  43. }
  44. /**
  45. * 删除短信记录
  46. * @auth true
  47. * @throws \think\Exception
  48. * @throws \think\exception\PDOException
  49. */
  50. public function remove()
  51. {
  52. $this->_delete($this->table);
  53. }
  54. }