ImportantRecordAnnotation.php 838 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace app\api\controller\v1;
  3. use app\api\controller\Base;
  4. use app\hander\HelpHander;
  5. class ImportantRecordAnnotation extends Base
  6. {
  7. // 新增/编辑
  8. public function save(){
  9. model('ImportantRecordAnnotation')->add();
  10. HelpHander::success([],'操作成功');
  11. }
  12. // 详情
  13. public function detail(){
  14. $id = input('id/d',0);
  15. $ret = model('ImportantRecordAnnotation')->info($id);
  16. HelpHander::success($ret);
  17. }
  18. // 列表
  19. public function list(){
  20. $id = input('id/d',0); // 节点记录id
  21. $ret = model('ImportantRecord')->lists($id);
  22. HelpHander::success($ret);
  23. }
  24. // 删除
  25. public function del(){
  26. $id = input('id/d',0);
  27. model('ImportantRecord')->del($id);
  28. HelpHander::success([],'操作成功');
  29. }
  30. }