|
|
@@ -2,7 +2,6 @@ package com.platform.api.request;
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import jakarta.validation.constraints.NotBlank;
|
|
|
-import jakarta.validation.constraints.NotNull;
|
|
|
import lombok.Data;
|
|
|
|
|
|
/**
|
|
|
@@ -16,14 +15,12 @@ public class LicensePlateValidateRequest {
|
|
|
/**
|
|
|
* 车牌号
|
|
|
*/
|
|
|
- @NotBlank(message = "车牌号不能为空")
|
|
|
@Schema(description = "车牌号", example = "川A1234")
|
|
|
private String licensePlate;
|
|
|
|
|
|
/**
|
|
|
* 厂商来源标识
|
|
|
*/
|
|
|
- @NotBlank(message = "厂商来源标识不能为空")
|
|
|
@Schema(description = "厂商来源标识", example = "kw38146288dce12d6938d30ebc3a9db6c5")
|
|
|
private String uuid;
|
|
|
|