liujie
2023-09-25 8c55ab2701c99cec16eff92a26fefdf77fcdd28f
cloud-server-account/src/main/java/com/dsh/account/model/vo/userBenefitDetail/ExchangeDetailsResponse.java
@@ -4,17 +4,25 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class ExchangeDetailsResponse {
    @ApiModelProperty(value = "记录id")
    private Integer detailsId;
    private Long detailsId;
    @ApiModelProperty(value = "商品名称")
    private String goodName;
    @ApiModelProperty(value = "支付类型(积分 / 积分+现金)")
    private String requiredType;
    @ApiModelProperty(value = "积分")
    private Integer integral;
    @ApiModelProperty(value = "现金")
    private BigDecimal cash;
    @ApiModelProperty(value = "兑换方式(1=积分,2=积分+现金)")
    private Integer exchangeType;
    @ApiModelProperty(value = "有效期开始时间")
    private String startTime;