|
|
|
@ -27,12 +27,12 @@ public class UserSubmitMarriageBountyOrderDto implements Trans2DomainAssembler<O |
|
|
|
|
|
|
|
@ApiModelProperty("见面费用") |
|
|
|
@NotNull(message = "见面费用不能为空") |
|
|
|
@DecimalMin(value = "0.01", message = "见面费用不等低于0.01") |
|
|
|
@DecimalMin(value = "1", message = "见面费用不等低于1元") |
|
|
|
private BigDecimal meetingFee; |
|
|
|
|
|
|
|
@ApiModelProperty("结果礼金") |
|
|
|
@NotNull(message = "结果礼金不能为空") |
|
|
|
@DecimalMin(value = "0.01", message = "结果礼金不等低于0.01") |
|
|
|
@DecimalMin(value = "0", message = "结果礼金不等低于0元") |
|
|
|
private BigDecimal resultGift; |
|
|
|
|
|
|
|
@Override |
|
|
|
|