zx/app/common/model/system/merchant/FinancialRecord.php

62 lines
1.7 KiB
PHP
Raw Normal View History

2024-07-02 15:32:59 +08:00
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\common\model\system\merchant;
use app\common\model\BaseModel;
use app\common\model\store\order\StoreOrder;
use app\common\model\store\order\StoreRefundOrder;
use app\common\model\user\User;
use app\common\model\user\UserOrder;
use app\common\repositories\system\merchant\MerchantRepository;
class FinancialRecord extends BaseModel
{
public static function tablePk(): ?string
{
return 'financial_record_id';
}
public static function tableName(): string
{
return 'financial_record';
}
public function user()
{
return $this->hasOne(User::class, 'uid', 'user_id');
}
public function merchant()
{
return $this->hasOne(Merchant::class, 'mer_id', 'mer_id');
}
public function orderInfo()
{
return $this->hasOne(StoreOrder::class, 'order_sn', 'order_sn');
}
public function refundOrder()
{
return $this->hasOne(StoreRefundOrder::class, 'refund_order_sn', 'order_sn');
}
public function userOrder()
{
return $this->hasOne(UserOrder::class, 'order_sn', 'order_sn');
}
}