/* * 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.alarm.vo; import io.swagger.annotations.ApiModel; import lombok.Data; import lombok.EqualsAndHashCode; import org.springblade.modules.alarm.entity.Alarm; /** * 视图实体类 * * @author BladeX * @since 2020-07-04 */ @Data @EqualsAndHashCode(callSuper = true) @ApiModel(value = "AlarmVO对象", description = "AlarmVO对象") public class AlarmVO extends Alarm { private static final long serialVersionUID = 1L; private String addvnm; private String serialNumber; private String stype; private String channelNumber; private String beginTime; private String endTime; private String name; private String oneContacts; private String twoContacts; private String ThreeContacts; private String onePhone; private String twoPhone; private String ThreePhone; private String oneId; private String twoId; private String threeId; private String deptId; private String timeDesc; private String securityArr; private String securityId; private String baname; private String baid; private String baphone; private String deptName; private String manufacturers; private String deviceName; /** * 状态 status 1 查当前保安收到的警情和已接收的警情,已处理完成的 2:未接收的 3:处理完成的 */ private Integer status; }