コード例 #1
0
ファイル: Model.php プロジェクト: tokushima/rhaco3
 /**
  * @automap
  */
 public function insert()
 {
     $req = new \org\rhaco\Request();
     $model = new \test\model\TestModel();
     $model->id(100);
     $model->string('abcdefg');
     $model->integer($req->in_vars('integer'));
     $model->save();
 }