19 lines
399 B
PHP
19 lines
399 B
PHP
<?php
|
|
|
|
|
|
namespace Yunshop\Article\models;
|
|
|
|
|
|
class UniAccountUser extends \app\common\models\user\UniAccountUser
|
|
{
|
|
public static function AddUniAccountUser($uid)
|
|
{
|
|
$uni_model = new self();
|
|
$uni_model->fill([
|
|
'uid' => $uid,
|
|
'uniacid' => \YunShop::app()->uniacid,
|
|
'role' => 'clerk'
|
|
]);
|
|
$uni_model->save();
|
|
}
|
|
} |