linwe
2024-05-29 c10d6358b9f014375a13821465bc978d0c0da22e
src/main/java/org/springblade/modules/task/entity/TaskCampusReportingEventEntity.java
@@ -25,6 +25,7 @@
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.util.Date;
/**
@@ -36,12 +37,14 @@
@Data
@TableName("jczz_task_campus_reporting_event")
@ApiModel(value = "TaskCampusReportingEvent对象", description = "校园安全检查任务表")
public class TaskCampusReportingEventEntity  {
public class TaskCampusReportingEventEntity  implements Serializable {
   private static final long serialVersionUID = 1L;
   /** 主键id */
   @ApiModelProperty(value = "主键ID", example = "")
   @TableId(value = "id", type = IdType.AUTO)
   private Integer id;
   private Long id;
   /** 任务ID */
   @ApiModelProperty(value = "任务ID", example = "")
@@ -53,15 +56,15 @@
   @TableField("place_id")
   private Long placeId;
   /** 小区ID */
   @ApiModelProperty(value = "小区ID", example = "")
   @TableField("district_id")
   private String districtId;
   /** 小区名称 */
   @ApiModelProperty(value = "小区名称", example = "")
   @TableField("district_name")
   private String districtName;
//   /** 小区ID */
//   @ApiModelProperty(value = "小区ID", example = "")
//   @TableField("district_id")
//   private String districtId;
//
//   /** 小区名称 */
//   @ApiModelProperty(value = "小区名称", example = "")
//   @TableField("district_name")
//   private String districtName;
   /** 自查时间 */
   @ApiModelProperty(value = "自查时间", example = "")
@@ -125,8 +128,10 @@
   @TableField("confirm_notion")
   private String confirmNotion;
   /** 确认标记 */
   @ApiModelProperty(value = "确认标记", example = "")
   /**
    * 确认标记 1:待审核  2:审核通过  3:审核不通过  4:待上报(场所负责人完善,由系统下发的任务)
    */
   @ApiModelProperty(value = "确认标记 1:待审核  2:审核通过  3:审核不通过  4:待上报(场所负责人完善,由系统下发的任务)", example = "")
   @TableField("confirm_flag")
   private String confirmFlag;
@@ -215,6 +220,12 @@
   private String foImageUrls;
   /**
    * 来源: 1:主动上报  2:系统自动下发
    */
   @ApiModelProperty(value = "来源: 1:主动上报  2:系统自动下发")
   private Integer source;
   /**
    * 创建时间
    */
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@@ -232,10 +243,21 @@
   private Long createUser;
   /**
    * 来源: 1:主动上报  2:系统自动下发
    * 更新人
    */
   @ApiModelProperty(value = "来源: 1:主动上报  2:系统自动下发")
   private Integer source;
   @JsonSerialize(using = ToStringSerializer.class)
   @ApiModelProperty("更新人")
   @TableField(fill = FieldFill.UPDATE)
   private String updateUser;
   /**
    * 更新时间
    */
   @TableField(fill = FieldFill.UPDATE)
   @ApiModelProperty(value = "更新时间")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   private Date updateTime;
   /**
    * 是否已删除 0:否  1:是