Cui Zhi Feng
2024-10-11 8c312d2f443ee1c953b93b9522c2675aa1f9fe1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mzl.flower.dto.request.payment;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
public class OrderReduceDTO implements Serializable {
    @ApiModelProperty(value = "订单id")
    private String id;
 
    @ApiModelProperty(value = "打款金额")
    private BigDecimal amount;
}