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;
|
}
|