|
|
|
@ -2,6 +2,7 @@ package com.qniao.dam.api.query.marriagebounty.user.response; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
|
|
|
import com.qniao.dam.domian.aggregate.marriagebount.constant.MarriageBountyOrderType; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
@ -14,9 +15,15 @@ public class UserGetMarriageBountyOrderProductInfoVo { |
|
|
|
@JsonSerialize(using = ToStringSerializer.class) |
|
|
|
private Long marriageBountyOrderId; |
|
|
|
|
|
|
|
@ApiModelProperty("悬赏招亲类型") |
|
|
|
private MarriageBountyOrderType type; |
|
|
|
|
|
|
|
@ApiModelProperty("见面费用") |
|
|
|
private BigDecimal meetingFee = BigDecimal.ZERO; |
|
|
|
|
|
|
|
@ApiModelProperty("见面次数") |
|
|
|
private Integer meetingQuantity; |
|
|
|
|
|
|
|
@ApiModelProperty("已用见面次数") |
|
|
|
private Integer usedMeetingQuantity = 0; |
|
|
|
|
|
|
|
|