Files
heping-api/app/model/Payment.php
2022-09-09 17:08:19 +08:00

16 lines
256 B
PHP

<?php
namespace app\model;
use think\Model;
use think\model\relation\BelongsTo;
class Payment extends Model
{
protected $autoWriteTimestamp = true;
public function orders(): BelongsTo
{
return $this->belongsTo(Order::class);
}
}