1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.dsh.course.feignClient.activity.model;
|
| import lombok.Data;
|
|
| @Data
| public class DriverActivityHistoryReq {
| private Integer driverId;
| private Integer activityId;
| private Integer driverActivityId;
| private Integer type;
| private Integer carryOut;
| private String start;
| private String end;
| }
|
|