futian.liu
2023-12-22 3e9a4b3480e6508f3c6f7ac8723509d8b1120d20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.consum.base.pojo.response;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * @author asus
 * @version 1.0
 * @description: 物品模板信息
 * @date 2023/11/15 13:38
 */
@Data
@ApiModel(value = "物品模板信息")
public class GoodsTemplateVO {
 
    private Long id;
    private String goodsName;
    private String type;
 
}