package com.jilongda.manage.dto;
|
|
import com.jilongda.common.model.TGoods;
|
import com.jilongda.common.model.TGoodsSpecifications;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.List;
|
|
@Data
|
@ApiModel(value = "产品DTO")
|
public class TGoodsDTO extends TGoods {
|
|
@ApiModelProperty(value = "产品规格集合")
|
private List<TGoodsSpecifications> goodsSpecifications;
|
|
}
|