linwe
2023-11-09 44ac9427f3c44ce39a5bb5eeaa353f2944b92f51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
 *      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 com.fasterxml.jackson.annotation.JsonFormat;
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;
import org.springframework.format.annotation.DateTimeFormat;
 
/**
 * 旅馆安全自查任务 实体类
 *
 * @author BladeX
 * @since 2023-11-06
 */
@Data
@TableName("jczz_task_hotel_reporting")
@ApiModel(value = "TaskHotelReporting对象", description = "旅馆安全自查任务")
@EqualsAndHashCode(callSuper = true)
public class TaskHotelReportingEntity extends TenantEntity {
 
    /**
     * 任务id
     */
    @ApiModelProperty(value = "任务id")
    private Long taskId;
    /**
     * 酒店名称
     */
    @ApiModelProperty(value = "酒店名称")
    private String hotelName;
    /**
     * 场所ID
     */
    @ApiModelProperty(value = "场所ID")
    private Integer placeId;
    /**
     * 小区ID
     */
    @ApiModelProperty(value = "小区ID")
    private String districtId;
    /**
     * 小区名称
     */
    @ApiModelProperty(value = "小区名称")
    private String districtName;
    /**
     * 自查时间
     */
    @ApiModelProperty(value = "自查时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    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 Integer fireNums;
    /**
     * 灭火器状态
     */
    @ApiModelProperty(value = "灭火器状态")
    private String fireStatus;
    /**
     * 灭火器图片
     */
    @ApiModelProperty(value = "灭火器图片")
    private String fireImageUrls;
    /**
     * 安全通道状态
     */
    @ApiModelProperty(value = "安全通道状态")
    private String scStatus;
    /**
     * 安全通道图片
     */
    @ApiModelProperty(value = "安全通道图片")
    private String scImageUrls;
    /**
     * 技防设施有无
     */
    @ApiModelProperty(value = "技防设施有无")
    private String pfFlag;
    /**
     * 技防设施名称
     */
    @ApiModelProperty(value = "技防设施名称")
    private String pfName;
    /**
     * 技防设施照片
     */
    @ApiModelProperty(value = "技防设施照片")
    private String pfImageUrls;
    /**
     * 接待未成年人需要做到五个必须
     */
    @ApiModelProperty(value = "接待未成年人需要做到五个必须")
    private String fiveMust;
    /**
     * 未成年人入住登记本照片
     */
    @ApiModelProperty(value = "未成年人入住登记本照片")
    private String uanImageUrls;
    /**
     * 是否完全实名制登记
     */
    @ApiModelProperty(value = "是否完全实名制登记")
    private String realName;
    /**
     * 确认时间
     */
    @ApiModelProperty(value = "确认时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date confirmTime;
    /**
     * 确认用户ID
     */
    @ApiModelProperty(value = "确认用户ID")
    private Integer confirmUserId;
    /**
     * 确认用户ID
     */
    @ApiModelProperty(value = "确认用户ID")
    private String confirmUserName;
    /**
     * 安全通道有无
     */
    @ApiModelProperty(value = "安全通道有无")
    private String scFlag;
    /**
     * 确认意见
     */
    @ApiModelProperty(value = "确认意见")
    private String confirmNotion;
    /**
     * 确认标记
     */
    @ApiModelProperty(value = "确认标记")
    private String confirmFlag;
 
}