xiaoyong931011
2023-08-15 a9e31ba6fd2eb1f4a9fffa5c0d195ebbc8bcf797
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "SalePackageDto", description = "接收参数类")
public class SalePackageDto {
    @ApiModelProperty(value = "卖出数量", example = "20")
    private BigDecimal cnt;
}