linwe
2024-09-03 764d883b5ea3bdc06abbec548b6df0511e567978
src/main/java/org/springblade/modules/backblast/entity/BackblastPubRecordEntity.java
@@ -79,7 +79,7 @@
   /** 创建人 */
   @ApiModelProperty(value = "创建人", example = "")
   @TableField("create_user")
   @TableField(value = "create_user",fill = FieldFill.INSERT)
   private Long createUser;
   /** 创建时间 */
@@ -90,7 +90,7 @@
   /** 更新人 */
   @ApiModelProperty(value = "更新人", example = "")
   @TableField("update_user")
   @TableField(value = "update_user",fill = FieldFill.UPDATE)
   private Long updateUser;
   /** 更新时间 */
@@ -104,4 +104,28 @@
   @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;
}