package com.ruoyi.other.api.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
@ApiModel(description = "物流设置")
|
public class LogisticsSetDto {
|
/**
|
* 物流查询时间间隔
|
*/
|
@ApiModelProperty(value = "物流查询时间间隔")
|
private Integer waitTime;
|
|
/**
|
* 订单运费
|
*/
|
@ApiModelProperty(value = "订单运费")
|
private BigDecimal freight;
|
|
/**
|
* 包邮订单金额
|
*/
|
@ApiModelProperty(value = "包邮订单金额")
|
private BigDecimal freeFreight;
|
|
/**
|
* 包邮订单积分
|
*/
|
@ApiModelProperty(value = "包邮订单积分")
|
private Integer freeIntegral;
|
|
/**
|
* 包邮会员等级要求:1普通会员,2黄金会员,3钻石会员,4准代理,5代理,6总代,7合伙人
|
*/
|
@ApiModelProperty(value = "包邮会员等级要求:0全部 1普通会员,2黄金会员,3钻石会员,4准代理,5代理,6总代,7合伙人")
|
private String freeVip;
|
}
|