liyaozhi
2025-10-28 1320688354fd168c51cf2e05f29a2253f4ed9c00
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
 
 
namespace app\common\model\branch;
 
use app\common\model\BaseModel;
 
/**
 * 供应商客服模型
 */
class Service extends BaseModel
{
    protected $pk = 'service_id';
    protected $name = 'branch_service';
 
    /**
     * 详情
     */
    public static function detail($branch_id){
        return (new static())->where('branch_id', '=', $branch_id)->find();
    }
}