| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.chuanghai.ihotel.vo;
- import com.chuanghai.ihotel.util.BigDecimalSerializer;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fasterxml.jackson.databind.annotation.JsonSerialize;
- import lombok.Data;
- import java.math.BigDecimal;
- /**
- * 订单账单处理vo
- */
- @Data
- public class OrderBillHandleVO {
- /**
- * 订单id
- */
- @JsonFormat(shape = JsonFormat.Shape.STRING)
- private Long orderId;
- /**
- * 账单id
- */
- @JsonFormat(shape = JsonFormat.Shape.STRING)
- private Long billId;
- /**
- * 处理标识 1待退款、2待补缴、3订单完结
- */
- private String flag;
- /**
- * 待退款金额
- */
- @JsonSerialize(using = BigDecimalSerializer.class)
- private BigDecimal refundFee;
- /**
- * 待补缴金额
- */
- @JsonSerialize(using = BigDecimalSerializer.class)
- private BigDecimal supperFee;
- }
|