宝体数据调用接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
639 B

<?php
namespace app\common\model\sharing;
use app\common\model\BaseModel;
/**
* 售后单图片模型
* Class OrderRefundImage
* @package app\common\model\sharing
*/
class OrderRefundImage extends BaseModel
{
protected $name = 'sharing_order_refund_image';
protected $updateTime = false;
/**
* 关联文件库
* @return \think\model\relation\BelongsTo
*/
public function file()
{
$module = self::getCalledModule() ?: 'common';
return $this->belongsTo("app\\{$module}\\model\\UploadFile", 'image_id', 'file_id')
->bind(['file_path', 'file_name', 'file_url']);
}
}