com.alipay.api.domain.ServiceAttributeSimpleVO Maven / Gradle / Ivy
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 服务属性
*
* @author auto create
* @since 1.0, 2019-12-04 19:59:24
*/
public class ServiceAttributeSimpleVO extends AlipayObject {
private static final long serialVersionUID = 4218487888182989125L;
/**
* 服务属性key
*/
@ApiField("key")
private String key;
/**
* abcd
*/
@ApiListField("value")
@ApiField("string")
private List value;
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
public List getValue() {
return this.value;
}
public void setValue(List value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy