update 发布电单车计费模板

This commit is contained in:
Guoqs
2025-04-25 17:31:51 +08:00
parent 09c76b0ec2
commit 25bc761dcf
5 changed files with 115 additions and 13 deletions

View File

@@ -0,0 +1,26 @@
package com.jsowell.pile.dto;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 调试订单DTO
*/
@EqualsAndHashCode(callSuper = true)
@Data
public class DebugOrderDTO extends QueryOrderDTO{
/**
* 是否重新计算 订单主表and订单详情
*/
private String reCalculateFlag = "0";
/**
* 是否重新退款
*/
private String reRefundFlag = "0";
/**
* 是否重新分账
*/
private String reSplitFlag = "0";
}