xiaoyong931011
2022-12-01 488ae5b77a5e73c6b2b6a19edb777583e1a0c1e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author wzy
 * @date 2022-06-13
 **/
@Data
@ApiModel(value = "PriceDto", description = "计算价格接收参数类")
public class PriceDto {
 
    @ApiModelProperty(value = "价格", example = "1.0")
    private BigDecimal amount;
}