
com.alipay.api.domain.AlipayInsCooperationProductQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 保险产品查询
*
* @author auto create
* @since 1.0, 2017-07-19 16:55:33
*/
public class AlipayInsCooperationProductQueryModel extends AlipayObject {
private static final long serialVersionUID = 1825517568537496919L;
/**
* 产品编码;由蚂蚁保险平台分配,商户通过该产品编码投保特定的保险产品
*/
@ApiField("prod_code")
private String prodCode;
public String getProdCode() {
return this.prodCode;
}
public void setProdCode(String prodCode) {
this.prodCode = prodCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy