1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace app\common\model\card;
- use app\common\model\BaseModel;
- /**
- * 米卡配送物流模型
- * @package app\common\model
- */
- class UserRiceDeliveryExpress extends BaseModel
- {
- protected $name = 'user_rice_delivery_express';
- protected $append = [];
- /**
- * 一对一关联配送记录表
- */
- public function userRiceDelivery()
- {
- return $this->belongsTo('UserRiceDelivery', 'user_rice_delivery_id','id');
- }
- /**
- * 获取记录
- * @param int $id
- * @param array $with
- * @return static
- */
- public static function detail(int $id, array $with = [])
- {
- return static::get($id, $with);
- }
-
- }
|