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.
|
|
|
<?php
|
|
|
|
class SmscodeModel extends Orm_Base{
|
|
|
|
public $table = 'sms_code';
|
|
|
|
public $field = array(
|
|
|
|
'id' => array('type' => "int(11)",'comment' => ''),
|
|
|
|
'phone' => array('type' => "varchar(45)",'comment' => '实验室名称'),
|
|
|
|
'code' => array('type' => "varchar(45)",'comment' => '是否删除'),
|
|
|
|
'created' => array('type' => "int(11)",'comment' => '添加时间'),
|
|
|
|
'status' => array('type' => "int(11)",'comment' => '添加时间'),
|
|
|
|
'username' => array('type' => "int(11)",'comment' => '添加时间'),
|
|
|
|
);
|
|
|
|
public $pk = 'id';
|
|
|
|
}
|
|
|
|
|