无关风月
2024-12-09 2053b8fe0e98d4b4449bc756a93ced78f42277c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
 
}