All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.ItemLabelModifyInfo Maven / Gradle / Ivy

package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 商品标签变更信息
 *
 * @author auto create
 * @since 1.0, 2019-01-07 17:06:56
 */
public class ItemLabelModifyInfo extends AlipayObject {

	private static final long serialVersionUID = 2533288134447245362L;

	/**
	 * 标签键
OIL_NUM:油号
	 */
	@ApiField("label_key")
	private String labelKey;

	/**
	 * 标签值:
OIL_NUM对应的值为:95# 92# 98# 等等
	 */
	@ApiField("label_value")
	private String labelValue;

	public String getLabelKey() {
		return this.labelKey;
	}
	public void setLabelKey(String labelKey) {
		this.labelKey = labelKey;
	}

	public String getLabelValue() {
		return this.labelValue;
	}
	public void setLabelValue(String labelValue) {
		this.labelValue = labelValue;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy