| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace plugin\admin\app\model;
- use plugin\admin\app\model\Base;
- /**
- * @property integer $id 主键(主键)
- * @property string $name 姓名
- * @property string $number 身份证号码
- * @property integer $uid 会员ID
- * @property string $oname 旧姓名
- * @property string $onumber 旧身份证号码
- * @property mixed $created_at 创建时间
- * @property mixed $updated_at 更新时间
- */
- class UserIdentity extends Base
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'wa_user_identity';
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected $primaryKey = 'id';
-
-
-
- }
|