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.
15 lines
589 B
15 lines
589 B
6 months ago
|
<?php
|
||
|
class RemindModel extends Orm_Base{
|
||
|
public $table = 'remind';
|
||
|
public $field = array(
|
||
|
'id' => array('type' => "int(11)",'comment' => ''),
|
||
|
'content' => array('type' => "varchar(45)",'comment' => '实验室名称'),
|
||
|
'created' => array('type' => "varchar(45)",'comment' => '是否删除'),
|
||
|
'user_id' => array('type' => "int(11)",'comment' => '添加时间'),
|
||
|
'status' => array('type' => "int(11)",'comment' => '添加时间'),
|
||
|
'is_delete' => array('type' => "int(11)",'comment' => '添加时间'),
|
||
|
);
|
||
|
public $pk = 'id';
|
||
|
}
|
||
|
|