退款申请查询列表dto字段添加

This commit is contained in:
dzl 2025-05-20 16:54:28 +08:00
parent 0d4cb8b819
commit d85a4cfa44
4 changed files with 42 additions and 1 deletions

View File

@ -79,7 +79,8 @@ public class ResApplyRefundDto {
/**
* 骑行设备编号
*/
private String ebikeCode;;
private String ebikeCode;
;
/**
* 骑行开始时间
@ -91,4 +92,14 @@ public class ResApplyRefundDto {
*/
private LocalDateTime endTime;
/**
* 起点坐标
*/
private String ridePoint;
/**
* 终点坐标
*/
private String returnPoint;
}

View File

@ -101,4 +101,14 @@ public class ResCloseRefundDto {
*/
private LocalDateTime endTime;
/**
* 起点坐标
*/
private String ridePoint;
/**
* 终点坐标
*/
private String returnPoint;
}

View File

@ -96,4 +96,14 @@ public class ResHandleRefundDto {
*/
private LocalDateTime endTime;
/**
* 起点坐标
*/
private String ridePoint;
/**
* 终点坐标
*/
private String returnPoint;
}

View File

@ -121,4 +121,14 @@ public class ResProcessedRefundDto {
*/
private LocalDateTime endTime;
/**
* 起点坐标
*/
private String ridePoint;
/**
* 终点坐标
*/
private String returnPoint;
}