12 lines
394 B
PHP
12 lines
394 B
PHP
<?php
|
|
namespace User\Model;
|
|
use Think\Model\ViewModel;
|
|
class PostViewModel extends ViewModel {
|
|
public $viewFields = array(
|
|
'post'=>array('id','title','content','user_id','cate_id','time','type'),
|
|
'category'=>array('name'=>'category_name','title'=>'category_title', '_on'=>'post.cate_id=category.id'),
|
|
'member'=>array('username', '_on'=>'post.user_id=member.id'),
|
|
);
|
|
}
|
|
|
|
?>
|