You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
551 B
26 lines
551 B
<?php
|
|
namespace app\model;
|
|
|
|
use app\model\BaseModel;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int $user_id
|
|
* @property int $status
|
|
* @property int $name
|
|
* @property int $front_img
|
|
* @property int $back_img
|
|
* @property int $code
|
|
* @property int $country
|
|
* @property int $create_time
|
|
* @property int $update_time
|
|
*/
|
|
class UserVerifyLogModel extends BaseModel
|
|
{
|
|
protected $name = 'user_verify_log';
|
|
protected $pk = 'id';
|
|
|
|
const STATUS_NO = 1; // 待审核
|
|
const STATUS_SUCCESS = 2; // 成功
|
|
const STATUS_FAIL = 3; // s失败
|
|
}
|