cloudroam
2024-12-10 6ee2a947a786edad9eb19a5401de7fcc456b90a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mzl.flower.dto.response.flower;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class FlowerMarkupPlDTO {
    private Long id;
 
    @ApiModelProperty(value = "下限")
    private BigDecimal lowerPrice;
 
    @ApiModelProperty(value = "上限")
    private BigDecimal upperPrice;
 
    @ApiModelProperty(value = "金额")
    private BigDecimal fee;
}