Note.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace Act\Lib;
  3. use Dever;
  4. class Note
  5. {
  6. # 获取当前用户是否预约
  7. public function get($uid, $id, $type)
  8. {
  9. $where['uid'] = $uid;
  10. $where['type'] = $type;
  11. $where['data_id'] = $id;
  12. $where['state'] = 1;
  13. $info = Dever::db('act/live_note')->one($where);
  14. if ($info) {
  15. return 1;
  16. } else {
  17. return 2;
  18. }
  19. }
  20. # 预约
  21. public function submit($uid, $id, $type, $formid = '')
  22. {
  23. $where['uid'] = $uid;
  24. $where['data_id'] = $id;
  25. $where['type'] = $type;
  26. $info = Dever::db('act/live_note')->one($where);
  27. if (!$info) {
  28. if ($formid) {
  29. $where['formid'] = $formid;
  30. }
  31. Dever::db('act/live_note')->insert($where);
  32. } else {
  33. $update['where_id'] = $info['id'];
  34. if ($formid) {
  35. $update['formid'] = $formid;
  36. }
  37. if ($info['state'] == 1) {
  38. $update['state'] = 2;
  39. Dever::db('act/live_note')->update($update);
  40. } else {
  41. $update['state'] = 1;
  42. Dever::db('act/live_note')->update($update);
  43. }
  44. }
  45. return true;
  46. }
  47. # 提醒 后续实现
  48. }