zhongrj
2024-01-06 ad0bc4e763fa988a2ec4dd8dfab7381ea7726021
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*
 *      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.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
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_bail_reporting_event")
@ApiModel(value = "TaskBailReportingEvent对象", description = "取保候审任务")
@EqualsAndHashCode(callSuper = true)
public class TaskBailReportingEventEntity extends TenantEntity {
 
    /**
     * 任务id
     */
    @ApiModelProperty(value = "任务id")
    private Long taskId;
    /**
     * 小区ID
     */
    @ApiModelProperty(value = "小区ID")
    private String districtId;
    /**
     * 小区名称
     */
    @ApiModelProperty(value = "小区名称")
    private String districtName;
    /**
     * 自查人姓名
     */
    @ApiModelProperty(value = "自查人姓名")
    private Long checkUserId;
    /**
     * 自查人姓名
     */
    @ApiModelProperty(value = "自查人姓名")
    private String checkUserName;
    /**
     * 自查人手机
     */
    @ApiModelProperty(value = "自查人手机")
    private String checkTelephone;
    /**
     * 自查位置
     */
    @ApiModelProperty(value = "自查位置")
    private String location;
    /**
     * 确认时间
     */
    @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 Long confirmUserId;
    /**
     * 确认用户ID
     */
    @ApiModelProperty(value = "确认用户ID")
    private String confirmUserName;
    /**
     * 确认意见
     */
    @ApiModelProperty(value = "确认意见")
    private String confirmNotion;
    /**
     * 确认标记
     */
    @ApiModelProperty(value = "确认标记")
    private String confirmFlag;
    /**
     * 申请时间
     */
    @ApiModelProperty(value = "申请时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date applyTime;
    /**
     * 外出原因
     */
    @ApiModelProperty(value = "外出原因")
    private String applyName;
    /**
     * 身份证号
     */
    @ApiModelProperty(value = "身份证号")
    private String idCard;
    /**
     * 标签人员
     */
    @ApiModelProperty(value = "标签人员")
    private String personLabels;
    /**
     * 位置图片
     */
    @ApiModelProperty(value = "位置图片")
    private String locationImageUrls;
    /**
     * 确认用户电话
     */
    @ApiModelProperty(value = "确认用户电话")
    private String confirmUserTelephone;
    /**
     * 出发-当前时间
     */
    @ApiModelProperty(value = "出发-当前时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date startTime;
    /**
     * 出发-报备位置
     */
    @ApiModelProperty(value = "出发-报备位置")
    private String startLocation;
    /**
     * 出发-位置图片
     */
    @ApiModelProperty(value = "出发-位置图片")
    private String startImageUrls;
    /**
     * 到达-当前时间
     */
    @ApiModelProperty(value = "到达-当前时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date reachTime;
    /**
     * 到达-报备位置
     */
    @ApiModelProperty(value = "到达-报备位置")
    private String reachLocation;
    /**
     * 到达-位置图片
     */
    @ApiModelProperty(value = "到达-位置图片")
    private String reachImageUrls;
    /**
     * 返回-当前时间
     */
    @ApiModelProperty(value = "返回-当前时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date returnTime;
    /**
     * 返回-报备位置
     */
    @ApiModelProperty(value = "返回-报备位置")
    private String returnLocation;
    /**
     * 返回-位置图片
     */
    @ApiModelProperty(value = "返回-位置图片")
    private String returnImageUrls;
 
    @TableField(fill = FieldFill.INSERT)
    @ApiModelProperty(value = "创建时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    @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;
 
}