14 lines
174 B
PHP
14 lines
174 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace app\common\logic\user;
|
||
|
|
|
||
|
|
use app\common\service\BaseServiceLogic;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 用户逻辑层
|
||
|
|
* Class UserLogic
|
||
|
|
*/
|
||
|
|
class UserLogic extends BaseServiceLogic
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|