package com.doumee.dao.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 订单派单DTO
|
* @author rk
|
* @date 2026/04/13
|
*/
|
@Data
|
@ApiModel("订单派单")
|
public class DispatchDTO {
|
|
@ApiModelProperty(value = "订单主键", required = true)
|
private Integer orderId;
|
|
@ApiModelProperty(value = "加急费用(元)", required = true, example = "10.00")
|
private BigDecimal urgentFee;
|
|
@ApiModelProperty(value = "派送司机(会员主键)")
|
private Integer driverId;
|
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
}
|