package com.doumee.dao.business.model.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : JP
|
* @create 2023/6/7 15:09
|
*/
|
@Data
|
public class GoodCreatePlatRequest {
|
|
@ApiModelProperty(value = "类别编码",example = "1")
|
private Integer categoryId;
|
|
@ApiModelProperty(value = "商品范围 0全部 1部分",example = "1")
|
private Integer type;
|
|
@ApiModelProperty(value = "加价系数",example = "1")
|
private BigDecimal rate;
|
|
@ApiModelProperty(value = "品牌主键")
|
private List<PlatGoodsParam> goodsParamList;
|
|
}
|