获取工作订单列表DTO

This commit is contained in:
小朱 2025-05-06 09:15:06 +08:00
parent 478b935936
commit b22faa6125

View File

@ -0,0 +1,59 @@
package com.cdzy.ebikemaintenance.model.dto.response;
import lombok.Data;
import java.util.Date;
@Data
public class ResEbikeWorkOrderSummaryDto {
/**
* 订单ID
*/
private String orderId;
/**
* 电动车编号
*/
private String bikeCode;
/**
* 订单类型
*/
private String orderType;
/**
* 创建时间
*/
private Date createdAt;
/**
* 接收者ID
*/
private String receiverId;
/**
* 配送类型
*/
private String dispatchType;
/**
* 电动车数量
*/
private String bikeCount;
/**
* 经度
*/
private Double longitude;
/**
* 纬度
*/
private Double latitude;
/**
* 类型名称
*/
private String orderTypeName;
}