cy
2023-11-20 717ff115ee5c57c8df0fd491b40b848090d2c68e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
 
}