quanwei
18 hours ago c441dea81bd86bdfb12dff35821fed51f4cc91c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
 
namespace app\operations\model\plus\table;
 
use app\common\model\plus\table\Table as TableModel;
 
/**
 * 表单模型
 */
class Table extends TableModel
{
    /**
     * 获取列表
     */
    public function getList($data)
    {
        return $this->where('is_delete', '=', 0)
            ->order(['sort' => 'asc', 'create_time' => 'desc'])
            ->paginate($data);
    }
 
    /**
     * 获取优惠券列表
     */
    public function getAll()
    {
        return $this->field(['table_id', 'name'])->where('is_delete', '=', 0)
            ->order(['sort' => 'asc', 'create_time' => 'desc'])
            ->select();
    }
 
    /**
     * 添加新记录
     */
    public function add($data)
    {
        $data['content'] = json_encode($data['tableData'], JSON_UNESCAPED_UNICODE);
        $data['app_id'] = self::$app_id;
        return $this->save($data);
    }
 
    /**
     * 更新记录
     */
    public function edit($data)
    {
        $data['content'] = json_encode($data['tableData'], JSON_UNESCAPED_UNICODE);
        return $this->save($data);
    }
 
    /**
     * 删除记录 (软删除)
     */
    public function setDelete()
    {
        return $this->save([
            'is_delete' => 1
        ]);
    }
 
}