1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace Act\Lib;
- use Dever;
- class Note
- {
- # 获取当前用户是否预约
- public function get($uid, $id, $type)
- {
- $where['uid'] = $uid;
- $where['type'] = $type;
- $where['data_id'] = $id;
- $where['state'] = 1;
- $info = Dever::db('act/live_note')->one($where);
- if ($info) {
- return 1;
- } else {
- return 2;
- }
- }
- # 预约
- public function submit($uid, $id, $type, $formid = '')
- {
- $where['uid'] = $uid;
- $where['data_id'] = $id;
- $where['type'] = $type;
- $info = Dever::db('act/live_note')->one($where);
- if (!$info) {
- if ($formid) {
- $where['formid'] = $formid;
- }
-
- Dever::db('act/live_note')->insert($where);
- } else {
- $update['where_id'] = $info['id'];
- if ($formid) {
- $update['formid'] = $formid;
- }
- if ($info['state'] == 1) {
- $update['state'] = 2;
- Dever::db('act/live_note')->update($update);
- } else {
- $update['state'] = 1;
- Dever::db('act/live_note')->update($update);
- }
- }
- return true;
- }
- # 提醒 后续实现
- }
|