From fe2b2e037a91fbc22bd887174d37c7dd229333d3 Mon Sep 17 00:00:00 2001
From: zhangzeli <123456>
Date: 星期二, 09 十一月 2021 15:02:36 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/AbnormalOpen.java |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 56 insertions(+), 0 deletions(-)

diff --git a/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/AbnormalOpen.java b/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/AbnormalOpen.java
new file mode 100644
index 0000000..fa93a9c
--- /dev/null
+++ b/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/AbnormalOpen.java
@@ -0,0 +1,56 @@
+package cn.exrick.xboot.your.entity;
+
+import cn.exrick.xboot.core.base.XbootBaseEntity;
+import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import org.hibernate.annotations.DynamicInsert;
+import org.hibernate.annotations.DynamicUpdate;
+
+import javax.persistence.Entity;
+import javax.persistence.Table;
+
+/**
+ * @author Exrick
+ */
+@Data
+@Entity
+@DynamicInsert
+@DynamicUpdate
+@Table(name = "t_abnormal_open")
+@TableName("t_abnormal_open")
+@ApiModel(value = "杞﹀帰寮�鍚褰�")
+public class AbnormalOpen extends XbootBaseEntity {
+
+    private static final long serialVersionUID = 1L;
+
+    @ApiModelProperty(value = "浠诲姟id")
+    private String taskId;
+
+    @ApiModelProperty(value = "杞﹁締id")
+    private String carId;
+
+    @ApiModelProperty(value = "鍙告満浜鸿劯")
+    private String img1;
+
+    @ApiModelProperty(value = "闅忚溅鍛樹汉鑴�")
+    private String img2;
+
+    @ApiModelProperty(value = "鍙告満id")
+    private String userId;
+
+    @ApiModelProperty(value = "闅忚溅鍛榠d")
+    private String followUserId;
+
+    @ApiModelProperty(value = "缁忓害")
+    private String lng;
+
+    @ApiModelProperty(value = "绾害")
+    private String lat;
+
+    @ApiModelProperty(value = "鐘舵�� 0锛氭甯�  1:寮傚父")
+    private int status;
+
+
+}
\ No newline at end of file

--
Gitblit v1.9.1