78 lines
2.3 KiB
PHP
78 lines
2.3 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace App\Model;
|
||
|
||
|
||
|
||
use Hyperf\Snowflake\Concern\Snowflake;
|
||
|
||
/**
|
||
* @property int $inquiry_refund_id 主键id
|
||
* @property int $patient_id 患者id
|
||
* @property int $order_inquiry_id 订单-问诊id
|
||
* @property string $inquiry_no 系统订单编号
|
||
* @property string $inquiry_refund_no 系统退款编号
|
||
* @property string $refund_id 第三方退款单号
|
||
* @property int $inquiry_refund_status 问诊订单退款状态(0:无退款 1:申请退款 2:退款中 3:退款成功 4:拒绝退款 5:退款关闭)
|
||
* @property string $refund_total 退款金额
|
||
* @property string $refund_reason 退款原因
|
||
* @property string $success_time 退款成功时间
|
||
* @property \Carbon\Carbon $created_at 创建时间
|
||
* @property \Carbon\Carbon $updated_at 修改时间
|
||
*/
|
||
class OrderInquiryRefund extends Model
|
||
{
|
||
use Snowflake;
|
||
|
||
/**
|
||
* The table associated with the model.
|
||
*/
|
||
protected ?string $table = 'order_inquiry_refund';
|
||
|
||
/**
|
||
* The attributes that are mass assignable.
|
||
*/
|
||
protected array $fillable = ['inquiry_refund_id', 'patient_id', 'order_inquiry_id', 'inquiry_no', 'inquiry_refund_no', 'refund_id', 'inquiry_refund_status', 'refund_total', 'refund_reason', 'success_time', 'created_at', 'updated_at'];
|
||
|
||
protected string $primaryKey = "inquiry_refund_id";
|
||
|
||
/**
|
||
* 获取信息-单条
|
||
* @param array $params
|
||
* @param array $fields
|
||
* @return object|null
|
||
*/
|
||
public static function getOne(array $params, array $fields = ['*']): object|null
|
||
{
|
||
return self::where($params)->first($fields);
|
||
}
|
||
|
||
/**
|
||
* 获取信息-多条
|
||
* @param array $params
|
||
* @param array $fields
|
||
* @return object|null
|
||
*/
|
||
public static function getList(array $params, array $fields = ['*']): object|null
|
||
{
|
||
return self::where($params)->get($fields);
|
||
}
|
||
|
||
/**
|
||
* 新增
|
||
* @param array $data
|
||
* @return \Hyperf\Database\Model\Model|OrderInquiryRefund
|
||
*/
|
||
public static function addOrderInquiryRefund(array $data): \Hyperf\Database\Model\Model|OrderInquiryRefund
|
||
{
|
||
return self::create($data);
|
||
}
|
||
|
||
public static function edit(array $params = [], array $data = []): int
|
||
{
|
||
return self::where($params)->update($data);
|
||
}
|
||
}
|