Files
sentcms/application/common/model/OrderProduct.php
2016-06-21 17:12:08 +08:00

20 lines
659 B
PHP

<?php
// +----------------------------------------------------------------------
// | OneThink [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.onethink.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: 麦当苗儿 <zuojiazi@vip.qq.com> <http://www.zjzit.cn>
// +----------------------------------------------------------------------
namespace app\common\model;
/**
* 分类模型
*/
class OrderProduct extends Base{
public function book(){
return $this->hasOne('Book', 'id', 'product_id');
}
}