From 829e47bcaccf0481d39b737da203fa271bd7f4e8 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期五, 02 八月 2024 10:38:47 +0800
Subject: [PATCH] 车辆抓拍数据完整性
---
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TMonitor.java | 50 +++++++++++---------------------------------------
1 files changed, 11 insertions(+), 39 deletions(-)
diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TMonitor.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TMonitor.java
index b60c3a5..92430f4 100644
--- a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TMonitor.java
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TMonitor.java
@@ -1,6 +1,7 @@
package com.ycl.platform.domain.entity;
import annotation.Excel;
+import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.system.entity.BaseEntity;
@@ -141,25 +142,17 @@
@Excel(name = "绫诲瀷缂栫爜 : [131.鎽勫儚鏈虹紪鐮�;132.缃戠粶鎽勫儚鏈虹紪鐮�;]")
private Long lxbm;
- @Excel(name = "寮傚父鍘熷洜")
- private String reason;
+ @TableField(exist = false)
+ private Integer recovery;
- @Excel(name = "鏄惁鐢熸垚寮傚父宸ュ崟")
- private Long defaultOrder;
+ private Long deptId;
- @Excel(name ="寮傚父鎭㈠鏍囪瘑")
- private Long recovery;
-
- @Excel(name = "寮傚父鎭㈠鏃堕棿")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date recoveryTime;
-
- public Long getDefaultOrder() {
- return defaultOrder;
+ public Long getDeptId() {
+ return deptId;
}
- public void setDefaultOrder(Long defaultOrder) {
- this.defaultOrder = defaultOrder;
+ public void setDeptId(Long deptId) {
+ this.deptId = deptId;
}
public void setInstalledTime(Date installedTime) {
@@ -170,31 +163,13 @@
return installedTime;
}
- public Date getRecoveryTime() {
- return recoveryTime;
- }
-
- public void setRecoveryTime(Date recoveryTime) {
- this.recoveryTime = recoveryTime;
- }
-
- public Long getRecovery() {
+ public Integer getRecovery() {
return recovery;
}
- public void setRecovery(Long recovery) {
+ public void setRecovery(Integer recovery) {
this.recovery = recovery;
}
-
- public String getReason() {
- return reason;
- }
-
- public void setReason(String reason) {
- this.reason = reason;
- }
-
-
public void setId(Long id)
{
@@ -502,10 +477,7 @@
", cameraDept='" + cameraDept + '\'' +
", hybm='" + hybm + '\'' +
", lxbm=" + lxbm +
- ", reason='" + reason + '\'' +
- ", defaultOrder=" + defaultOrder +
- ", recovery=" + recovery +
- ", recoveryTime=" + recoveryTime +
+ ", deptId=" + deptId +
'}';
}
}
--
Gitblit v1.8.0