xuhy
2024-08-26 916fe4fbd615dffcf5919c9fa6be3d2f94e8e750
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.system.vo;
 
import com.ruoyi.system.domain.TGoods;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "商品管理VO")
public class TGoodsVO extends TGoods {
 
    @ApiModelProperty(value = "类型名称")
    private String typeName;
 
}