| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhAdmin".
- *
- * @property int $id
- * @property string $mobile 手机号
- * @property string $avatar 头像
- * @property string $adminName 管理员姓名
- * @property string $password 密码
- * @property string $confirmPassword 确认密码
- * @property int $roleId 角色id
- * @property int $sex 性别 0未知 1男性 2女性
- * @property string $province 省
- * @property string $city 市
- * @property string $dist 区县
- * @property string $address 详细街道地址
- * @property string $openId 微信openid
- * @property string $unionId 微信unionId
- * @property int $subscribe 关注微信公众号 0未关注 1关注
- * @property string $addLong 经度
- * @property string $addLat 纬度
- * @property string $addPrecision 精度
- * @property string $wxQrCode 微信员微信二维码
- * @property int $status
- * @property string $createTime 创建时间
- * @property string $updateTime
- */
- class xhAdmin extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhAdmin';
- }
- }
|