Files
ruoyi-java/ruoyi-system/src/main/java/com/ruoyi/erp/domain/Channelpv.java
2025-08-18 01:58:23 +08:00

32 lines
676 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.ruoyi.erp.domain;
import com.alibaba.fastjson2.annotation.JSONField;
/**
* 商品属性,通过`查询商品属性`接口获取属性参数
*
* 商品属性
*/
@lombok.Data
public class Channelpv {
/**
* 属性ID必填
*/
@JSONField(name = "property_id")
private String propertyid;
/**
* 属性名称(必填)
*/
@JSONField(name = "property_name")
private String propertyName;
/**
* 属性值ID必填
*/
@JSONField(name = "value_id")
private String valueid;
/**
* 属性值名称(必填)
*/
@JSONField(name = "value_name")
private String valueName;
}