// +---------------------------------------------------------------------- namespace app\common\model\system\admin; use app\common\model\BaseModel; use app\common\model\system\auth\Role; class Partner extends BaseModel { /** * @return string * @author xaboy * @day 2020-03-30 */ public static function tablePk(): string { return 'id'; } /** * @return string * @author xaboy * @day 2020-03-30 */ public static function tableName(): string { return 'system_partner_role'; } }