| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\Module\User\Unit;
- class User
- {
- /**
- * 用户ID
- * @var int
- */
- public int $id;
- /**
- * 密码hash
- * @var string
- */
- public string $password;
- /**
- *
- * @param $id
- * @param $password
- */
- public function __construct($id, $password = '')
- {
- $this->id = $id;
- $this->password = $password;
- }
- }
|