zepengdev
2025-09-17 23e3602b4f3ebde8665c3ab3a56ef81b8d671e0d
oying-system/src/main/java/com/oying/modules/pc/product/view/ProductLabelCustomerView.java
@@ -1,13 +1,27 @@
package com.oying.modules.pc.product.view;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class ProductLabelCustomerView {
    private Integer categoryId;
    @ApiModelProperty(value = "标签ID")
    private Long labelId;
    @ApiModelProperty(value = "商品ID")
    private Long productId;
    @ApiModelProperty(value = "分类名称")
    private String categoryName;
    @ApiModelProperty(value = "标签名称")
    private String labelName;
    @ApiModelProperty(value = "标签值")
    private String labelValue;
    @ApiModelProperty(value = "单位")
    private String unit;
}