/* * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * Neither the name of the dreamlu.net developer nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * Author: Chill 庄骞 (smallchill@163.com) */ package org.springblade.modules.task.entity; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.util.Date; import lombok.EqualsAndHashCode; import org.springblade.core.tenant.mp.TenantEntity; /** * 校园安全检查任务表 实体类 * * @author BladeX * @since 2023-11-06 */ @Data @TableName("jczz_task_campus_reporting_event") @ApiModel(value = "TaskCampusReportingEvent对象", description = "校园安全检查任务表") @EqualsAndHashCode(callSuper = true) public class TaskCampusReportingEventEntity extends TenantEntity { /** * 任务ID */ @ApiModelProperty(value = "任务ID") private Long taskId; /** * 场所ID */ @ApiModelProperty(value = "场所ID") private Integer placeId; /** * 小区ID */ @ApiModelProperty(value = "小区ID") private String districtId; /** * 小区名称 */ @ApiModelProperty(value = "小区名称") private String districtName; /** * 自查时间 */ @ApiModelProperty(value = "自查时间") private Date checkTime; /** * 自查人姓名 */ @ApiModelProperty(value = "自查人姓名") private Long checkUserId; /** * 自查人姓名 */ @ApiModelProperty(value = "自查人姓名") private String checkUserName; /** * 自查人手机 */ @ApiModelProperty(value = "自查人手机") private String checkTelephone; /** * 自查位置 */ @ApiModelProperty(value = "自查位置") private String location; /** * 安全通道状态 */ @ApiModelProperty(value = "安全通道状态") private String scStatus; /** * 安全通道图片 */ @ApiModelProperty(value = "安全通道图片") private String scImageUrls; /** * 未成年人入住登记本照片 */ @ApiModelProperty(value = "未成年人入住登记本照片") private String uanImageUrls; /** * 确认时间 */ @ApiModelProperty(value = "确认时间") private Date confirmTime; /** * 确认用户ID */ @ApiModelProperty(value = "确认用户ID") private Integer confirmUserId; /** * 确认用户ID */ @ApiModelProperty(value = "确认用户ID") private String confirmUserName; /** * 确认意见 */ @ApiModelProperty(value = "确认意见") private String confirmNotion; /** * 确认标记 */ @ApiModelProperty(value = "确认标记") private String confirmFlag; /** * 校园名称 */ @ApiModelProperty(value = "校园名称") private String campusName; /** * 四个一 */ @ApiModelProperty(value = "四个一") private String fourOne; /** * 消防器材数量 */ @ApiModelProperty(value = "消防器材数量") private Integer fireFacsNums; /** * 消防器材状态 */ @ApiModelProperty(value = "消防器材状态") private String fireFacsStatus; /** * 消防器材图片 */ @ApiModelProperty(value = "消防器材图片") private String fireFacsImageUrls; /** * 消防器材种类 */ @ApiModelProperty(value = "消防器材种类") private String fireFacsType; /** * 校园周边安全巡查照片 */ @ApiModelProperty(value = "校园周边安全巡查照片") private String patrolImageUrls; /** * 学校大门是否配备防撞装置 */ @ApiModelProperty(value = "学校大门是否配备防撞装置") private String antiCollision; /** * 校园防撞装置照片 */ @ApiModelProperty(value = "校园防撞装置照片") private String antiCollisionImageUrls; /** * 专职保安人数 */ @ApiModelProperty(value = "专职保安人数") private Integer fullSoNums; /** * 兼职保安人数 */ @ApiModelProperty(value = "兼职保安人数") private Integer partSoNums; /** * 学校监控总数 */ @ApiModelProperty(value = "学校监控总数") private Integer monitorNums; /** * 监控是否全覆盖 */ @ApiModelProperty(value = "监控是否全覆盖") private String monitorOver; /** * 高空抛物监控 */ @ApiModelProperty(value = "高空抛物监控") private String highAltitudeMonitor; /** * 高空抛物监控照片 */ @ApiModelProperty(value = "高空抛物监控照片") private String haImageUrls; /** * 四个一工程照片 */ @ApiModelProperty(value = "四个一工程照片") private String foImageUrls; }