futian.liu
2023-11-23 5112320c542900d9e79bbc0938b195a43e3fc255
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.consum.base.pojo.response;
 
import io.swagger.annotations.ApiModel;
import java.util.List;
import lombok.Data;
 
/**
 * @author asus
 * @version 1.0
 * @description: TODO
 * @date 2023/11/14 13:13
 */
@Data
@ApiModel(description = "输出商品表")
public class FormOutputGoodsVO {
 
    // 主键
    private Long id;
    //分类编号
    private Long categoryId;
    //分类名称
    private String categoryName;
    //物品模版编号
    private Long baseGoodsTemplateId;
 
    private String goodsName;
 
    private List<GoodsModelVO> models;
 
}