From a00d30518e22cce588d8d61fb9773b1814bcc4b9 Mon Sep 17 00:00:00 2001
From: wang-hao-jie <1550036656@qq.com>
Date: 星期四, 28 十月 2021 08:50:04 +0800
Subject: [PATCH] 违章记录

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

diff --git a/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/Alarm.java b/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/Alarm.java
new file mode 100644
index 0000000..72a0a9c
--- /dev/null
+++ b/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/Alarm.java
@@ -0,0 +1,46 @@
+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_alarm")
+@TableName("t_alarm")
+@ApiModel(value = "鎶ヨ璁板綍")
+public class Alarm extends XbootBaseEntity {
+
+    private static final long serialVersionUID = 1L;
+
+    @ApiModelProperty(value = "杞﹁締id")
+    private String carId;
+
+    @ApiModelProperty(value = "鍏蜂綋绫诲瀷濡備笅")
+    private int type;
+
+    @ApiModelProperty(value = "鎶ヨ璇︾粏鎻忚堪")
+    private String value;
+
+    @ApiModelProperty(value = "杞︾墝鍙�")
+    private String carNo;
+
+    @ApiModelProperty(value = "椹鹃┒浜篿d")
+    private String carUserId;
+
+    @ApiModelProperty(value = "璺熼殢浜篿d")
+    private String followUserId;
+
+}
\ No newline at end of file

--
Gitblit v1.9.1