This commit is contained in:
wucongxing8150 2024-04-29 16:39:47 +08:00
parent 644b082009
commit 3f804845a3
3 changed files with 5 additions and 4 deletions

View File

@ -44,7 +44,7 @@ class ReportPreProductOrderCommand extends HyperfCommand
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function handle()
public function handle(): void
{
$this->line("开始");

View File

@ -6,6 +6,7 @@ namespace App\Model;
use Carbon\Carbon;
use Hyperf\Database\Model\Builder;
use Hyperf\Database\Model\Collection;
use Hyperf\Snowflake\Concern\Snowflake;
@ -29,8 +30,8 @@ use Hyperf\Snowflake\Concern\Snowflake;
* @property int $report_prescription_int 处方上报次数
* @property string $report_prescription_time 处方上报时间
* @property string $report_prescription_fail_reason 处方上报失败原因
* @property \Carbon\Carbon $created_at 创建时间
* @property \Carbon\Carbon $updated_at 修改时间
* @property Carbon $created_at 创建时间
* @property Carbon $updated_at 修改时间
*/
class ReportRegulatory extends Model
{

View File

@ -3528,7 +3528,7 @@ class MessagePush extends BaseService
$link_params = array();
$link_params['order_inquiry_id'] = $this->order_inquiry['order_inquiry_id'];
$link_params['order_no'] = $this->order['order_no'];
$link_params['order_no'] = $this->order_service_package['order_no'];
$link_params['inquiry_type'] = $this->order_inquiry['inquiry_type'];
$link_params['doctor_user_id'] = $user_doctor['user_id'];
$link_params['patient_user_id'] = $this->order_inquiry['user_id'];