com.alipay.api.domain.MerchantMenber 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-08-08 20:05:24
*/
public class MerchantMenber extends AlipayObject {
private static final long serialVersionUID = 7674672261685166255L;
/**
* 生日 yyyy-MM-dd
*/
@ApiField("birth")
private String birth;
/**
* 手机号
*/
@ApiField("cell")
private String cell;
/**
* 性别(男:MALE;女:FEMALE)
*/
@ApiField("gende")
private String gende;
/**
* 姓名
*/
@ApiField("name")
private String name;
public String getBirth() {
return this.birth;
}
public void setBirth(String birth) {
this.birth = birth;
}
public String getCell() {
return this.cell;
}
public void setCell(String cell) {
this.cell = cell;
}
public String getGende() {
return this.gende;
}
public void setGende(String gende) {
this.gende = gende;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}