From 764d883b5ea3bdc06abbec548b6df0511e567978 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Tue, 03 Sep 2024 09:46:05 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/binlog' into binlog
---
src/main/java/org/springblade/modules/backblast/entity/BackblastPubRecordEntity.java | 131 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 131 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/backblast/entity/BackblastPubRecordEntity.java b/src/main/java/org/springblade/modules/backblast/entity/BackblastPubRecordEntity.java
new file mode 100644
index 0000000..39dbbe8
--- /dev/null
+++ b/src/main/java/org/springblade/modules/backblast/entity/BackblastPubRecordEntity.java
@@ -0,0 +1,131 @@
+package org.springblade.modules.backblast.entity;
+
+import com.baomidou.mybatisplus.annotation.*;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * 反炸宣传记录表 实体类
+ *
+ * @author BladeX
+ * @since 2024-03-15
+ */
+@Data
+@TableName("jczz_backblast_pub_record")
+@ApiModel(value = "BackblastPubRecord对象", description = "反炸宣传记录表")
+public class BackblastPubRecordEntity implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /** 主键id */
+ @ApiModelProperty(value = "主键ID", example = "")
+ @TableId(value = "id", type = IdType.ASSIGN_ID)
+ private Long id;
+
+ /**
+ * 房屋编码
+ */
+ @ApiModelProperty(value = "房屋编码")
+ private String houseCode;
+ /**
+ * 记录民警姓名
+ */
+ @ApiModelProperty(value = "宣传记录民警姓名")
+ private String policeman;
+ /**
+ * 记录民警电话
+ */
+ @ApiModelProperty(value = "宣传记录民警电话")
+ private String policemanPhone;
+ /**
+ * 宣传内容
+ */
+ @ApiModelProperty(value = "宣传内容")
+ private String pubContent;
+ /**
+ * 宣传现场照片
+ */
+ @ApiModelProperty(value = "宣传现场照片")
+ private String pubUrls;
+ /**
+ * 网格编号
+ */
+ @ApiModelProperty(value = "网格编号")
+ private String gridCode;
+ /**
+ * 警务网格编号
+ */
+ @ApiModelProperty(value = "警务网格编号")
+ private String jwGridCode;
+ /**
+ * 经度
+ */
+ @ApiModelProperty(value = "经度")
+ private String lng;
+ /**
+ * 纬度
+ */
+ @ApiModelProperty(value = "纬度")
+ private String lat;
+ /**
+ * 地址
+ */
+ @ApiModelProperty(value = "地址")
+ private String address;
+
+ /** 创建人 */
+ @ApiModelProperty(value = "创建人", example = "")
+ @TableField(value = "create_user",fill = FieldFill.INSERT)
+ private Long createUser;
+
+ /** 创建时间 */
+ @ApiModelProperty(value = "创建时间", example = "")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+ @TableField(value = "create_time",fill = FieldFill.INSERT)
+ private Date createTime;
+
+ /** 更新人 */
+ @ApiModelProperty(value = "更新人", example = "")
+ @TableField(value = "update_user",fill = FieldFill.UPDATE)
+ private Long updateUser;
+
+ /** 更新时间 */
+ @ApiModelProperty(value = "更新时间", example = "")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+ @TableField(value = "update_time",fill = FieldFill.UPDATE)
+ private Date updateTime;
+
+ /** 是否删除 0:否 1:是 */
+ @ApiModelProperty(value = "是否删除 0:否 1:是", example = "")
+ @TableField("is_deleted")
+ @TableLogic
+ private Integer isDeleted;
+
+ /** 是否下载国家反诈app 1:是 2:否 */
+ @ApiModelProperty(value = "是否下载国家反诈app 1:是 2:否", example = "")
+ private Integer isFzApp;
+
+ /** 是否打开预警功能 1:是 2:否 */
+ @ApiModelProperty(value = "是否打开预警功能 1:是 2:否", example = "")
+ private Integer isOpenAlarm;
+
+ /** 是否接受过其他反诈宣防内容 */
+ @ApiModelProperty(value = "是否接受过其他反诈宣防内容", example = "")
+ private Integer isOther;
+
+ /** 其他防诈内容 */
+ @ApiModelProperty(value = "其他防诈内容", example = "")
+ private String otherId;
+
+ @ApiModelProperty(value = "是否接受过其他反诈宣防内容", example = "")
+ @TableField("backblast_pub_flag")
+ private String backblastPubFlag;
+
+ @ApiModelProperty(value = "备注", example = "")
+ @TableField("remark")
+ private String remark;
+}
--
Gitblit v1.9.3