|
|
|
@ -15,6 +15,7 @@ import lombok.Data; |
|
|
|
|
|
|
|
import javax.validation.constraints.DecimalMin; |
|
|
|
import javax.validation.constraints.Max; |
|
|
|
import javax.validation.constraints.Min; |
|
|
|
import javax.validation.constraints.NotNull; |
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.ArrayList; |
|
|
|
@ -40,7 +41,7 @@ public class UserSubmitMarriageBountyOrderDto implements Trans2DomainAssembler<O |
|
|
|
|
|
|
|
@ApiModelProperty("可见面费用次数") |
|
|
|
@Max(value = 5, message = "可见面费用次数最多5次") |
|
|
|
@Max(value = 1, message = "可见面费用次数最少1次") |
|
|
|
@Min(value = 1, message = "可见面费用次数最少1次") |
|
|
|
private Integer meetingQuantity = 5; |
|
|
|
|
|
|
|
@ApiModelProperty("结果礼金") |
|
|
|
|