소스 검색

车辆信息管理字段添加

xieyn 1 년 전
부모
커밋
71209828a7
1개의 변경된 파일19개의 추가작업 그리고 0개의 파일을 삭제
  1. 19 0
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/oa/entity/Car.java

+ 19 - 0
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/oa/entity/Car.java

@@ -97,4 +97,23 @@ public class Car implements Serializable {
 	@Excel(name = "附件", width = 15)
     @ApiModelProperty(value = "附件")
     private java.lang.String accesory;
+
+    /**登记人*/
+    @Excel(name = "登记人", width = 15)
+    @ApiModelProperty(value = "登记人")
+    private java.lang.String registrantPerson;
+    /**登记部门*/
+    @Excel(name = "登记部门", width = 15)
+    @ApiModelProperty(value = "登记部门")
+    private java.lang.String registrantDepart;
+    /**备注*/
+    @Excel(name = "备注", width = 15)
+    @ApiModelProperty(value = "备注")
+    private java.lang.String remark;
+    /**车辆品牌*/
+    @Excel(name = "车辆品牌", width = 15)
+    @ApiModelProperty(value = "车辆品牌")
+    private java.lang.String carBrand;
+
+
 }