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

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

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.entity.openShop;

import java.util.*;

public class GetDraftResponse{

    /**
     * 草稿Id
     */
    private Long draftId;
    public Long getDraftId() {
        return draftId;
    }
    public void setDraftId(Long draftId) {
        this.draftId = draftId;
    }
    
    /**
     * 店铺名称
     */
    private String storeName;
    public String getStoreName() {
        return storeName;
    }
    public void setStoreName(String storeName) {
        this.storeName = storeName;
    }
    
    /**
     * 商户id
     */
    private Long merchantId;
    public Long getMerchantId() {
        return merchantId;
    }
    public void setMerchantId(Long merchantId) {
        this.merchantId = merchantId;
    }
    
    /**
     * 创建人id
     */
    private String creatorId;
    public String getCreatorId() {
        return creatorId;
    }
    public void setCreatorId(String creatorId) {
        this.creatorId = creatorId;
    }
    
    /**
     * 更新人id
     */
    private String updaterId;
    public String getUpdaterId() {
        return updaterId;
    }
    public void setUpdaterId(String updaterId) {
        this.updaterId = updaterId;
    }
    
    /**
     * 地址信息
     */
    private AddressInfo addressInfo;
    public AddressInfo getAddressInfo() {
        return addressInfo;
    }
    public void setAddressInfo(AddressInfo addressInfo) {
        this.addressInfo = addressInfo;
    }
    
    /**
     * 联系人信息
     */
    private ContactInfo contactInfo;
    public ContactInfo getContactInfo() {
        return contactInfo;
    }
    public void setContactInfo(ContactInfo contactInfo) {
        this.contactInfo = contactInfo;
    }
    
    /**
     * 执照信息
     */
    private List certificationInfos;
    public List getCertificationInfos() {
        return certificationInfos;
    }
    public void setCertificationInfos(List certificationInfos) {
        this.certificationInfos = certificationInfos;
    }
    
    /**
     * 品类信息
     */
    private List categories;
    public List getCategories() {
        return categories;
    }
    public void setCategories(List categories) {
        this.categories = categories;
    }
    
    /**
     * 图片信息
     */
    private List images;
    public List getImages() {
        return images;
    }
    public void setImages(List images) {
        this.images = images;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy