From 8b7258c9427882bb1798f1502eaa35184c6e374e Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Fri, 09 Aug 2024 14:29:18 +0800
Subject: [PATCH] 短信指定楼栋发送
---
src/main/java/org/springblade/modules/backblast/entity/BackblastPubRecordEntity.java | 49 +++++++++++++++++++++++++++++++++++++++++++++----
1 files changed, 45 insertions(+), 4 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
index e714a25..6ae1641 100644
--- a/src/main/java/org/springblade/modules/backblast/entity/BackblastPubRecordEntity.java
+++ b/src/main/java/org/springblade/modules/backblast/entity/BackblastPubRecordEntity.java
@@ -30,7 +30,7 @@
* 房屋编码
*/
@ApiModelProperty(value = "房屋编码")
- private Long houseCode;
+ private String houseCode;
/**
* 记录民警姓名
*/
@@ -51,11 +51,35 @@
*/
@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("create_user")
+ @TableField(value = "create_user",fill = FieldFill.INSERT)
private Long createUser;
/** 创建时间 */
@@ -66,7 +90,7 @@
/** 更新人 */
@ApiModelProperty(value = "更新人", example = "")
- @TableField("update_user")
+ @TableField(value = "update_user",fill = FieldFill.UPDATE)
private Long updateUser;
/** 更新时间 */
@@ -78,5 +102,22 @@
/** 是否删除 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;
}
--
Gitblit v1.9.3