/*
|
* 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_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 Integer 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;
|
|
}
|