31 lines
660 B
PHP
31 lines
660 B
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use support\think\Model;
|
|
|
|
class DepositOrder extends Model
|
|
{
|
|
protected $name = 'deposit_order';
|
|
|
|
protected $autoWriteTimestamp = true;
|
|
|
|
protected $type = [
|
|
'create_time' => 'integer',
|
|
'update_time' => 'integer',
|
|
'pay_time' => 'integer',
|
|
'amount' => 'string',
|
|
'status' => 'integer',
|
|
];
|
|
|
|
public function user(): \think\model\relation\BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id', 'id');
|
|
}
|
|
|
|
public function channel(): \think\model\relation\BelongsTo
|
|
{
|
|
return $this->belongsTo(Channel::class, 'channel_id', 'id');
|
|
}
|
|
}
|