修改医生账户

This commit is contained in:
wucongxing 2023-05-16 14:53:40 +08:00
parent 8cf5b29953
commit e18fd8df22

View File

@ -186,8 +186,8 @@ class OrderInquiry extends Model
public static function getDoctorCreatedDateOrderInquiryPage(array $params, array $reception_time, array $fields = ["*"], int $page = null, ?int $per_page = 10): mixed
{
$raw = self::where($params)
->whereBetween('finish_time', $reception_time)
->orderBy('finish_time')
->whereBetween('created_at', $reception_time)
->orderBy('created_at')
->paginate($per_page, $fields, "page", $page);
$data = array();