From ec6d43aa07ee0e8faf34498057ebcfbb446aa015 Mon Sep 17 00:00:00 2001
From: hjl <1657978663@qq.com>
Date: 星期二, 16 七月 2024 09:21:51 +0800
Subject: [PATCH] feat: 代码重构

---
 ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/vo/HomePageInfoVO.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/vo/HomePageInfoVO.java b/ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/vo/HomePageInfoVO.java
index c6dea9d..d14da12 100644
--- a/ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/vo/HomePageInfoVO.java
+++ b/ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/vo/HomePageInfoVO.java
@@ -1,5 +1,6 @@
 package com.ruoyi.worker.vo;
 
+import com.ruoyi.order.api.entity.WorkerOrderCountVO;
 import com.ruoyi.worker.entity.MasterWorker;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
@@ -16,12 +17,12 @@
     private MasterWorker workerInfo;
 
     @ApiModelProperty("订单统计")
-    private OrderCountVO orderCountInfo;
+    private WorkerOrderCountVO orderCountInfo;
 
     @ApiModelProperty("操作指导内容")
     private String content;
 
-    public HomePageInfoVO(MasterWorker workerInfo, OrderCountVO orderCountInfo, String content) {
+    public HomePageInfoVO(MasterWorker workerInfo, WorkerOrderCountVO orderCountInfo, String content) {
         this.workerInfo = workerInfo;
         this.orderCountInfo = orderCountInfo;
         this.content = content;

--
Gitblit v1.7.1