eleme.openapi.sdk.api.entity.msorder.ComplaintSendVoucherRequest Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.msorder;
import eleme.openapi.sdk.api.entity.msorder.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class ComplaintSendVoucherRequest{
/**
* 请求ID
*/
private String requestId;
public String getRequestId() {
return requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
/**
* 投诉单ID
*/
private String msOrderId;
public String getMsOrderId() {
return msOrderId;
}
public void setMsOrderId(String msOrderId) {
this.msOrderId = msOrderId;
}
/**
* 订单消费门槛金额
*/
private Integer orderThresholdAmount;
public Integer getOrderThresholdAmount() {
return orderThresholdAmount;
}
public void setOrderThresholdAmount(Integer orderThresholdAmount) {
this.orderThresholdAmount = orderThresholdAmount;
}
/**
* 满减金额
*/
private Integer reduceAmount;
public Integer getReduceAmount() {
return reduceAmount;
}
public void setReduceAmount(Integer reduceAmount) {
this.reduceAmount = reduceAmount;
}
/**
* 相对有效期的结束因子
*/
private Integer validPeriodTo;
public Integer getValidPeriodTo() {
return validPeriodTo;
}
public void setValidPeriodTo(Integer validPeriodTo) {
this.validPeriodTo = validPeriodTo;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy