feat : login wx
This commit is contained in:
18
app/Constants/Common/UserCode.php
Normal file
18
app/Constants/Common/UserCode.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Constants\Common;
|
||||
|
||||
class UserCode
|
||||
{
|
||||
/**
|
||||
* 是否绑定手机号 1=是 2=否
|
||||
*/
|
||||
const int IS_BIND_PHONE = 1;
|
||||
const int IS_NOT_BIND_PHONE = 2;
|
||||
|
||||
/**
|
||||
* 是否默认头像 1=不是 2=是
|
||||
*/
|
||||
const int IS_NOT_DEFAULT_AVATAR = 1;
|
||||
const int IS_DEFAULT_AVATAR = 2;
|
||||
}
|
||||
Reference in New Issue
Block a user