All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.openShop.ContactInfo Maven / Gradle / Ivy

The newest version!
package eleme.openapi.sdk.api.entity.openShop;

public class ContactInfo{

    /**
     * 联系人姓名
     */
    private String name;
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    
    /**
     * 手机号
     */
    private String mobile;
    public String getMobile() {
        return mobile;
    }
    public void setMobile(String mobile) {
        this.mobile = mobile;
    }
    
    /**
     * 对外电话(外卖等)
     */
    private String extPhone;
    public String getExtPhone() {
        return extPhone;
    }
    public void setExtPhone(String extPhone) {
        this.extPhone = extPhone;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy