MModStartinit
1e1f174c创建于 2022年5月28日历史提交
<?php


namespace Module\Partner\Biz;


class QuickPartnerPositionBiz extends AbstractPartnerPositionBiz
{
    protected $name;
    protected $title;

    public static function make($name, $title)
    {
        $o = new static();
        $o->name = $name;
        $o->title = $title;
        return $o;
    }

    public function name()
    {
        return $this->name;
    }

    public function title()
    {
        return $this->title;
    }
}