Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/dto/MakeOrderFreeDTO.java

32 lines
479 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.pile.dto;
import lombok.Data;
import java.math.BigDecimal;
/**
* 修改占桩订单免费/修改金额DTO
*
* @author Lemon
* @Date 2023/9/8 15:04
*/
@Data
public class MakeOrderFreeDTO {
private Long id;
/**
* 修改类型1-直接免费2-修改金额)
*/
private String type;
/**
* 占桩订单
*/
private String occupyCode;
/**
* 订单金额
*/
private BigDecimal orderAmount;
}