k94314517
2025-05-07 c0f4b90b5b6a45f044a694b5e3837cabfdcbf3aa
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
30
31
32
package com.doumee.dao.web.response;
 
import com.doumee.dao.business.model.PlatformBooks;
import com.doumee.dao.business.model.PlatformJob;
import com.doumee.dao.system.model.Multifile;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
@ApiModel("司机首页")
public class DriverHomeVO {
 
    @ApiModelProperty(value = "轮播图")
    private List<Multifile> multifileList;
 
    @ApiModelProperty(value = "月台任务列表")
    private List<PlatformJob> platformJobList;
 
    @ApiModelProperty(value = "预约指南")
    private String bookingTips;
 
    @ApiModelProperty(value = "园区导览图")
    private String reservationMap;
 
    @ApiModelProperty(value = "签到限制距离")
    private BigDecimal signDistance;
 
}