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

eleme.openapi.sdk.api.entity.card.TemplateInfo Maven / Gradle / Ivy

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

import eleme.openapi.sdk.api.enumeration.card.*;
import eleme.openapi.sdk.api.entity.card.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class TemplateInfo{

    /**
     * 模板类型
     */
    private TemplateType templateType;
    public TemplateType getTemplateType() {
        return templateType;
    }
    public void setTemplateType(TemplateType templateType) {
        this.templateType = templateType;
    }
    
    /**
     * 模板名称
     */
    private String templateName;
    public String getTemplateName() {
        return templateName;
    }
    public void setTemplateName(String templateName) {
        this.templateName = templateName;
    }
    
    /**
     * 会员卡名称
     */
    private String cardName;
    public String getCardName() {
        return cardName;
    }
    public void setCardName(String cardName) {
        this.cardName = cardName;
    }
    
    /**
     * 条码类型
     */
    private TemplateCodeType codeType;
    public TemplateCodeType getCodeType() {
        return codeType;
    }
    public void setCodeType(TemplateCodeType codeType) {
        this.codeType = codeType;
    }
    
    /**
     * 品牌名称
     */
    private String brandName;
    public String getBrandName() {
        return brandName;
    }
    public void setBrandName(String brandName) {
        this.brandName = brandName;
    }
    
    /**
     * 连锁店id
     */
    private String chainId;
    public String getChainId() {
        return chainId;
    }
    public void setChainId(String chainId) {
        this.chainId = chainId;
    }
    
    /**
     * logo
     */
    private String logoHash;
    public String getLogoHash() {
        return logoHash;
    }
    public void setLogoHash(String logoHash) {
        this.logoHash = logoHash;
    }
    
    /**
     * 背景图hash
     */
    private String backgroundHash;
    public String getBackgroundHash() {
        return backgroundHash;
    }
    public void setBackgroundHash(String backgroundHash) {
        this.backgroundHash = backgroundHash;
    }
    
    /**
     * 背景颜色
     */
    private String backgroundColor;
    public String getBackgroundColor() {
        return backgroundColor;
    }
    public void setBackgroundColor(String backgroundColor) {
        this.backgroundColor = backgroundColor;
    }
    
    /**
     * 领卡推荐语
     */
    private String greeting;
    public String getGreeting() {
        return greeting;
    }
    public void setGreeting(String greeting) {
        this.greeting = greeting;
    }
    
    /**
     * 开卡表单信息
     */
    private FormInfo formInfo;
    public FormInfo getFormInfo() {
        return formInfo;
    }
    public void setFormInfo(FormInfo formInfo) {
        this.formInfo = formInfo;
    }
    
    /**
     * 账户信息
     */
    private List accountInfos;
    public List getAccountInfos() {
        return accountInfos;
    }
    public void setAccountInfos(List accountInfos) {
        this.accountInfos = accountInfos;
    }
    
    /**
     * 栏位信息
     */
    private List columnInfos;
    public List getColumnInfos() {
        return columnInfos;
    }
    public void setColumnInfos(List columnInfos) {
        this.columnInfos = columnInfos;
    }
    
    /**
     * 会员权益
     */
    private List benefitInfos;
    public List getBenefitInfos() {
        return benefitInfos;
    }
    public void setBenefitInfos(List benefitInfos) {
        this.benefitInfos = benefitInfos;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy