com.alipay.api.domain.AlipayOpenPublicThirdCustomerServiceModel 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
alipay-sdk project for Spring Project
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, 2016-03-31 21:02:52
*/
public class AlipayOpenPublicThirdCustomerServiceModel extends AlipayObject {
private static final long serialVersionUID = 2336387928292651192L;
/**
* 服务窗商户在渠道商处对应的用户id
*/
@ApiField("channel_uid")
private String channelUid;
public String getChannelUid() {
return this.channelUid;
}
public void setChannelUid(String channelUid) {
this.channelUid = channelUid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy