com.alipay.api.domain.PolicyBizData 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, 2023-08-23 17:22:26
*/
public class PolicyBizData extends AlipayObject {
private static final long serialVersionUID = 6445865921393481247L;
/**
* 渠道用户标识
*/
@ApiField("channel_user_tag")
private String channelUserTag;
/**
* 渠道
*/
@ApiField("entrance")
private String entrance;
/**
* 来源
*/
@ApiField("source")
private String source;
public String getChannelUserTag() {
return this.channelUserTag;
}
public void setChannelUserTag(String channelUserTag) {
this.channelUserTag = channelUserTag;
}
public String getEntrance() {
return this.entrance;
}
public void setEntrance(String entrance) {
this.entrance = entrance;
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy