From 99f528e235f11126fea44480c6e8888a9e463f2f Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期六, 08 十一月 2025 21:09:53 +0800
Subject: [PATCH] feat:任务附件上传和同步
---
ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleInfo.java | 37 +++++++++++++++++++++++++++++++++++++
1 files changed, 37 insertions(+), 0 deletions(-)
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleInfo.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleInfo.java
index f3017e6..5871080 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleInfo.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/VehicleInfo.java
@@ -5,6 +5,8 @@
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
+import java.util.List;
+
/**
* 杞﹁締淇℃伅瀵硅薄 tb_vehicle_info
*/
@@ -13,6 +15,10 @@
/** 杞﹁締ID */
private Long vehicleId;
+
+ /** 鏃х郴缁熻溅杈咺D(SQL Server CarID) */
+ @Excel(name = "鏃х郴缁熻溅杈咺D")
+ private Integer carId;
/** 璁惧ID */
@Excel(name = "璁惧ID")
@@ -49,6 +55,12 @@
/** 褰掑睘閮ㄩ棬鍚嶇О */
@Excel(name = "褰掑睘閮ㄩ棬")
private String deptName;
+
+ /** 褰掑睘鐨勫涓垎鍏徃ID鍒楄〃锛堢敤浜庢煡璇㈠拰鏄剧ず锛� */
+ private List<Long> deptIds;
+
+ /** 褰掑睘鐨勫涓垎鍏徃鍚嶇О鍒楄〃锛堢敤浜庢樉绀猴級 */
+ private List<String> deptNames;
public void setVehicleId(Long vehicleId) {
this.vehicleId = vehicleId;
@@ -56,6 +68,14 @@
public Long getVehicleId() {
return vehicleId;
+ }
+
+ public void setCarId(Integer carId) {
+ this.carId = carId;
+ }
+
+ public Integer getCarId() {
+ return carId;
}
public void setDeviceId(String deviceId) {
@@ -129,11 +149,28 @@
public void setDeptName(String deptName) {
this.deptName = deptName;
}
+
+ public List<Long> getDeptIds() {
+ return deptIds;
+ }
+
+ public void setDeptIds(List<Long> deptIds) {
+ this.deptIds = deptIds;
+ }
+
+ public List<String> getDeptNames() {
+ return deptNames;
+ }
+
+ public void setDeptNames(List<String> deptNames) {
+ this.deptNames = deptNames;
+ }
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("vehicleId", getVehicleId())
+ .append("carId", getCarId())
.append("deviceId", getDeviceId())
.append("vehicleNo", getVehicleNo())
.append("vehicleType", getVehicleType())
--
Gitblit v1.9.1