| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace app\common\model;
- class GoodsOrderGroup extends BaseModel
- {
- /**
- * @var string
- */
- protected $name = 'goods_order_group';
- /**
- * @var array
- */
- protected $auto = [];
- /**
- * @var array
- */
- protected $insert = ['created_at','updated_at'];
- /**
- * @var array
- */
- protected $update = ['updated_at'];
- /**
- * 关联用户
- *
- * @author 许祖兴 < zuxing.xu@lettered.cn>
- * @date 2020/7/8 15:27
- *
- * @return \think\model\relation\BelongsTo
- */
- public function user()
- {
- return $this->belongsTo('Users','user_id','id');
- }
- /**
- * 关联产品
- *
- * @author 许祖兴 < zuxing.xu@lettered.cn>
- * @date 2020/7/8 15:27
- *
- * @return \think\model\relation\BelongsTo
- */
- public function goods()
- {
- return $this->belongsTo('Goods','goods_id','id');
- }
- }
|