com.alipay.api.domain.AlipayFundFlexiblestaffingInsuresignApplyModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 零工保投保企业签约申请
*
* @author auto create
* @since 1.0, 2024-11-15 10:28:45
*/
public class AlipayFundFlexiblestaffingInsuresignApplyModel extends AlipayObject {
private static final long serialVersionUID = 7852672992653599461L;
/**
* 场景码,固定值
*/
@ApiField("biz_scene")
private String bizScene;
/**
* 证件号
*/
@ApiField("cert_no")
private String certNo;
/**
* 保险渠道固定值
*/
@ApiField("channel")
private String channel;
/**
* 外部业务号
*/
@ApiField("out_biz_no")
private String outBizNo;
/**
* 产品码,固定值
*/
@ApiField("product_code")
private String productCode;
public String getBizScene() {
return this.bizScene;
}
public void setBizScene(String bizScene) {
this.bizScene = bizScene;
}
public String getCertNo() {
return this.certNo;
}
public void setCertNo(String certNo) {
this.certNo = certNo;
}
public String getChannel() {
return this.channel;
}
public void setChannel(String channel) {
this.channel = channel;
}
public String getOutBizNo() {
return this.outBizNo;
}
public void setOutBizNo(String outBizNo) {
this.outBizNo = outBizNo;
}
public String getProductCode() {
return this.productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy