nidapeng
2024-04-19 f49d12e6071858dbd6b4bd0c1adc1a101757f6c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.doumee.dao.web.response;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class InternalHomeVO {
 
    @ApiModelProperty(value = "主页图片")
    private String homeImg;
 
    @ApiModelProperty(value = "待处理任务数量")
    private Integer taskNum;
 
 
}