com.alipay.api.domain.ServiceContactSimpleVO 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, 2019-12-04 19:59:24
*/
public class ServiceContactSimpleVO extends AlipayObject {
private static final long serialVersionUID = 1548512457513712975L;
/**
* 服务联系人邮箱
*/
@ApiField("contact_email")
private String contactEmail;
/**
* 服务联系人名称
*/
@ApiField("contact_name")
private String contactName;
/**
* 服务联系人电话
*/
@ApiField("contact_tele")
private String contactTele;
public String getContactEmail() {
return this.contactEmail;
}
public void setContactEmail(String contactEmail) {
this.contactEmail = contactEmail;
}
public String getContactName() {
return this.contactName;
}
public void setContactName(String contactName) {
this.contactName = contactName;
}
public String getContactTele() {
return this.contactTele;
}
public void setContactTele(String contactTele) {
this.contactTele = contactTele;
}
}