eleme.openapi.sdk.api.entity.ugc.CouponDTO Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.ugc;
import eleme.openapi.sdk.api.enumeration.ugc.*;
import eleme.openapi.sdk.api.entity.ugc.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class CouponDTO{
/**
* 代金券使用门槛金额
*/
private int threshold;
public int getThreshold() {
return threshold;
}
public void setThreshold(int threshold) {
this.threshold = threshold;
}
/**
* 代金券优惠金额
*/
private int benefit;
public int getBenefit() {
return benefit;
}
public void setBenefit(int benefit) {
this.benefit = benefit;
}
/**
* 代金券发放后的有效天数
*/
private int duration;
public int getDuration() {
return duration;
}
public void setDuration(int duration) {
this.duration = duration;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy