Commit def21683 authored by lining's avatar lining

feat: 最小估价金额

parent 4598abb1
...@@ -24,7 +24,7 @@ public class SendServiceOrderDTO { ...@@ -24,7 +24,7 @@ public class SendServiceOrderDTO {
private Long id; private Long id;
@ApiModelProperty(value = "订单价格,维修价格不能低于1元", required = true) @ApiModelProperty(value = "订单价格,维修价格不能低于1元", required = true)
@Min(value = 1, message = "维修价格不能低于1元") @Min(value = 0, message = "维修价格不能低于1元")
@NotNull(message = "请输入维修价格") @NotNull(message = "请输入维修价格")
private BigDecimal price; private BigDecimal price;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment