Profile.php
975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
/**
* Created by PhpStorm.
* User: Ziy
* Date: 14/8/28
* Time: 上午8:54
*/
class YHMAuth_Package_Profile
{
/**
* 用户来源 (百度、google)
* @var string
*/
public $source = '';
/**
* 昵称
* @var string
*/
public $nickName = '';
/**
* 性别
* @var int
*/
public $gender = 3;
/**
* 头像
* @var string
*/
public $headIco = '';
/**
* 账户(OpenId ,Mail ,Mobile)
* @var string
*/
public $profile = '';
/**
* 密码
* @var string
*/
public $password = 'nopassword';
/**
* 生日
* @var string
*/
public $birthday = '0000-00-00';
/**
* 渠道(Iphone、安卓)
* @var integer
*/
public $channel = 0;
/**
* 地址
* @var int
*/
public $areaCode = 0;
/**
* qq 、微博 、阿里
* @var int
*/
public $profileType = 0;
}