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