33 lines
564 B
PHP
33 lines
564 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\model;
|
||
|
|
||
|
use support\Model;
|
||
|
|
||
|
/**
|
||
|
* @property integer $id ID(主键)
|
||
|
* @property string $phone 手机号
|
||
|
* @property string $code 验证码
|
||
|
* @property integer $status 状态 0已发送 验证码请求 1等待上号 2是已完成
|
||
|
*/
|
||
|
class GetLodeLog extends Model
|
||
|
{
|
||
|
/**
|
||
|
* The table associated with the model.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $table = 'get_code_log';
|
||
|
|
||
|
/**
|
||
|
* The primary key associated with the table.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $primaryKey = 'id';
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|