jiangping
2023-09-19 0b9c144b5110a7e2a85b2e5581ef304bb81a3ebc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.doumee.dao.business.model.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : JP
 * @create 2023/6/7 15:09
 */
@Data
public class PlatGoodsParam {
 
    @ApiModelProperty(value = "商品编码",example = "1")
    private Integer goodsId;
 
    @ApiModelProperty(value = "入手价格 元",example = "1")
    private BigDecimal price;
}