package com.ruoyi.worker.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author HJL
|
* @version 1.0
|
* @since 2024-06-05 11:53
|
*/
|
@Data
|
public class OrderNotHandleVO {
|
|
@ApiModelProperty("相隔距离")
|
private Long distance;
|
|
@ApiModelProperty("订单信息")
|
private OrderListVO orderList;
|
|
public OrderNotHandleVO(Long distance, OrderListVO orderList) {
|
this.distance = distance;
|
this.orderList = orderList;
|
}
|
}
|