From 74d7aed668f67adea64ba507373b58b86fffd100 Mon Sep 17 00:00:00 2001 From: zhangzeli <123456> Date: 星期一, 08 十一月 2021 08:41:05 +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