hjl
2024-06-18 aaa3384609da2dfb7d6788a2a2b3d92a2bff0813
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ruoyi.worker.vo;
 
import com.ruoyi.worker.entity.MasterWorker;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-06-05 10:04
 */
@Data
public class HomePageInfoVO {
 
    @ApiModelProperty("师傅信息")
    private MasterWorker workerInfo;
 
    @ApiModelProperty("订单统计")
    private OrderCountVO orderCountInfo;
 
    @ApiModelProperty("操作指导内容")
    private String content;
 
    public HomePageInfoVO(MasterWorker workerInfo, OrderCountVO orderCountInfo, String content) {
        this.workerInfo = workerInfo;
        this.orderCountInfo = orderCountInfo;
        this.content = content;
    }
}