quanwei
2025-10-28 36cacbaf78e510713002fcd5e3d61cece2e01421
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
<?php
 
namespace app\shop\model\supplier;
 
use app\common\model\supplier\ServiceSecurity as ServiceSecurityModel;
/**
 * 供应商服务保障模型
 */
class ServiceSecurity extends ServiceSecurityModel
{
    
    /**
     * 添加新记录
     */
    public function add($data)
    {
        $data['app_id'] = self::$app_id;
        return $this->save($data);
    }
 
    /**
     * 编辑记录
     */
    public function edit($data)
    {
      
        $data['update_time'] = time();
        return $this->save($data);
    }
 
    /**
     * 删除
     */
    public function remove()
    {
        // 判断是否存在
        $Count = (new ServiceApply())->where('service_security_id','=' ,$this['service_security_id'])->where('status','in','1,2')->count();
        if ($Count > 0) {
            $this->error = '该服务使用中,不允许删除';
            return false;
        }
        return $this->delete();
    }
 
 
}