wisdomPark/gather-app/src/main/java/com/ruoyi/database/domain/BindTheVehicle.java

21 lines
474 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ruoyi.database.domain;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.validation.constraints.NotBlank;
@Data
public class BindTheVehicle {
@ApiModelProperty("车牌号")
@NotBlank(message = "车牌号不能为空")
private String plateNo;
@ApiModelProperty("车牌类型 1蓝牌车 2黄牌车 3新能源车")
@NotBlank(message = "车牌类型不能为空")
private Integer plateType;
}