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

eleme.openapi.sdk.api.entity.activity.GiveOutRule 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 GiveOutRule{

    /**
     * 红包的发放类型(限定总量(总库存),每天限量(每日库存))
     */
    private OStockType type;
    public OStockType getType() {
        return type;
    }
    public void setType(OStockType type) {
        this.type = type;
    }
    
    /**
     * 要发放的红包数量
     */
    private Integer quantity;
    public Integer getQuantity() {
        return quantity;
    }
    public void setQuantity(Integer quantity) {
        this.quantity = quantity;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy