共计 251 个字符,预计需要花费 1 分钟才能阅读完成。
<?php
class Robots extends \Phalcon\Mvc\Model
{
public $code;
public $theYear;
public $theName;
public $theType;
public function columnMap()
{
//Keys 为表里面的真实字段名称
//value 为程序里面的名称
return array('id' => 'code',
'the_name' => 'theName',
'the_type' => 'theType',
'the_year' => 'theYear'
);
}
}
正文完