20 lines
659 B
PHP
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');
|
|
}
|
|
} |