package com.ld.igds.sec.dto;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 消防信息
|
*
|
* @author
|
*
|
*/
|
@Data
|
public class SecFireDto implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private String companyId;
|
|
private String deptId;
|
|
private String id;
|
|
@PropertyDef(label = "名称")
|
private String name;
|
|
@PropertyDef(label = "灭火器数量")
|
private Integer numExtinguisher;
|
|
@PropertyDef(label = "巡更人")
|
private String updateUser;
|
|
@PropertyDef(label = "巡更时间")
|
private Date updateTime;
|
|
@PropertyDef(label = "启用时间")
|
private Date startTime;
|
|
@PropertyDef(label = "备注")
|
private String remark;
|
|
@PropertyDef(label = "页面中的坐标")
|
private double posX;
|
|
@PropertyDef(label = "页面中的坐标")
|
private double posY;
|
}
|