// +---------------------------------------------------------------------- declare (strict_types = 1); namespace app\common\model; /** * 配送模板模型 * Class Delivery * @package app\common\model */ class ApplySeller extends BaseModel { // 定义表名 protected $name = 'apply_seller'; // 定义主键 protected $pk = 'id'; public static function countCommer($where){ return self::where($where)->count('id'); } }