hjl
2024-07-16 ec6d43aa07ee0e8faf34498057ebcfbb446aa015
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;