1234567891011121314151617181920 |
- <?php
- namespace app\mobile\logic;
- class BaseLogic
- {
- protected static $aid = 0;//当前操作的账户id
- protected static $aname = '';//当前操作的账户名
- protected static $company_id = '';//企业id
- protected static $card_id = '';//卡类型id
- //设置用户信息
- public static function setUserInfo(int $aid = 0, string $aname = '', int $company_id = 0, int $card_id = 0)
- {
- self::$aid = $aid;
- self::$aname = $aname;
- self::$company_id = $company_id;
- self::$card_id = $card_id;
- }
- }
|