|
@@ -1,5 +1,6 @@
|
|
|
package com.qmrb.system.pojo.form;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
|
|
@@ -26,5 +27,9 @@ public class MyCarPlateNumberForm {
|
|
|
@Schema(description = "用户ID",type="Long")
|
|
|
private Long userId;
|
|
|
|
|
|
-
|
|
|
+ /**
|
|
|
+ * 车牌类型 1:蓝牌 2:绿牌
|
|
|
+ */
|
|
|
+ @Schema(description = "车牌类型",type="String")
|
|
|
+ private String carType;
|
|
|
}
|