/* * 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.feedback.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; /** * 实体类 * * @author BladeX * @since 2020-07-14 */ @Data @TableName("sys_feedback") @ApiModel(value = "Feedback对象", description = "Feedback对象") public class Feedback implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 警单编号 */ @ApiModelProperty(value = "警单编号") @TableField("jid") private String jid; /** * 出警员编号 */ @ApiModelProperty(value = "出警员编号") @TableField("snumber") private String snumber; /** * 出警员姓名 */ @ApiModelProperty(value = "出警员姓名") @TableField("sname") private String sname; /** * 行政区编码 */ @ApiModelProperty(value = "行政区编码") private String addvcd; /** * 事发地址 */ @ApiModelProperty(value = "事发地址") private String place; /** * 处理结果 */ @ApiModelProperty(value = "处理结果") private String result; /** * 警情描述 */ @ApiModelProperty(value = "警情描述") private String describe; /** * 警情类别 */ @ApiModelProperty(value = "警情类别") private String type; /** * 设备编码 */ @ApiModelProperty(value = "设备编码") @TableField("devicenumber") private String devicenumber; /** * 报警人姓名 */ @ApiModelProperty(value = "报警人姓名") @TableField("galarmpeople") private String galarmpeople; /** * 报警人电话 */ @ApiModelProperty(value = "报警人电话") private String phone; /** * 事发时间 */ @ApiModelProperty(value = "事发时间") @TableField("stime") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date stime; /** * 处理完成时间 */ @ApiModelProperty(value = "处理完成时间") @TableField("ctime") private String ctime; /** * 录音位置 *//* @ApiModelProperty(value = "录音位置") @TableField("feedbackaudio") private String feedbackaudio; *//** * 视频位置 *//* @ApiModelProperty(value = "视频位置") @TableField("feedbackvideo") private String feedbackvideo; *//** * 照片位置 *//* @ApiModelProperty(value = "照片位置") @TableField("feedbackphoto") private String feedbackphoto;*/ private String jd; private String wd; private String tname; }