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

eleme.openapi.sdk.api.entity.activity.OrderSubsidyActivity Maven / Gradle / Ivy

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

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

public class OrderSubsidyActivity{

    /**
     * 活动参与关系id
     */
    private Long id;
    public Long getId() {
        return id;
    }
    public void setId(Long id) {
        this.id = id;
    }
    
    /**
     * 若为单品活动、部分商品满减活动,则返回命中的sku_id,其他店铺活动不返回
     */
    private List skuIds;
    public List getSkuIds() {
        return skuIds;
    }
    public void setSkuIds(List skuIds) {
        this.skuIds = skuIds;
    }
    
    /**
     * 活动模板id
     */
    private Long metaId;
    public Long getMetaId() {
        return metaId;
    }
    public void setMetaId(Long metaId) {
        this.metaId = metaId;
    }
    
    /**
     * 活动名称
     */
    private String name;
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    
    /**
     * 活动大类:单品活动(11)、店铺活动(12)、限量抢购(200)
     */
    private Integer categoryId;
    public Integer getCategoryId() {
        return categoryId;
    }
    public void setCategoryId(Integer categoryId) {
        this.categoryId = categoryId;
    }
    
    /**
     * 活动细分类型:满减、满赠等
     */
    private Integer type;
    public Integer getType() {
        return type;
    }
    public void setType(Integer type) {
        this.type = type;
    }
    
    /**
     * 门槛
     */
    private Double threshold;
    public Double getThreshold() {
        return threshold;
    }
    public void setThreshold(Double threshold) {
        this.threshold = threshold;
    }
    
    /**
     * 补贴细节
     */
    private List subsidy;
    public List getSubsidy() {
        return subsidy;
    }
    public void setSubsidy(List subsidy) {
        this.subsidy = subsidy;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy