| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- package com.ruoyi.data.domain.vo;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
- import com.alibaba.excel.annotation.ExcelProperty;
- import com.ruoyi.common.annotation.ExcelDictFormat;
- import com.ruoyi.common.convert.ExcelDictConvert;
- import lombok.Data;
- import java.util.Date;
- import java.io.Serializable;
- /**
- * 设备台账视图对象 tbl_equipment_sbook
- *
- * @author ruoyi
- * @date 2023-12-05
- */
- @Data
- @ExcelIgnoreUnannotated
- public class TblEquipmentSbookVo implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- *
- */
- @ExcelProperty(value = "")
- private Long id;
- /**
- * 上层位置
- */
- @ExcelProperty(value = "上层位置")
- private Long equipmentTreeId;
- /**
- * 设备编码
- */
- @ExcelProperty(value = "设备编码")
- private String sn;
- /**
- * 备用编码
- */
- @ExcelProperty(value = "备用编码")
- private String spareSn;
- /**
- * 设备名称
- */
- @ExcelProperty(value = "设备名称")
- private String name;
- /**
- * 设备信息
- */
- @ExcelProperty(value = "设备信息")
- private String equipmentInfoId;
- /**
- * 所属公司
- */
- @ExcelProperty(value = "所属公司")
- private String deptId;
- /**
- * 所属组织机构
- */
- @ExcelProperty(value = "所属组织机构")
- private String deptName;
- /**
- * 所属类型
- */
- @ExcelProperty(value = "所属类型")
- private Long equipmentTypeId;
- /**
- * 负责人
- */
- @ExcelProperty(value = "负责人")
- private String personInCharge;
- /**
- * 安装日期
- */
- @ExcelProperty(value = "安装日期")
- private Date installationDate;
- /**
- * 安装地点地址
- */
- @ExcelProperty(value = "安装地点地址")
- private String address;
- /**
- * 关联设备id
- */
- @ExcelProperty(value = "网关设备id")
- private Long gatewayId;
- /**
- * 标签
- */
- @ExcelProperty(value = "标签")
- private String tagids;
- /**
- * 状态
- */
- @ExcelProperty(value = "状态")
- private String status;
- /**
- * 保修期结束日期
- */
- @ExcelProperty(value = "保修期结束日期")
- private Date endOfWarrantyPeriod;
- /**
- * 制造日期
- */
- @ExcelProperty(value = "制造日期")
- private Date manufacturingDate;
- /**
- * 资产编码
- */
- @ExcelProperty(value = "资产编码")
- private String assetNo;
- /**
- * 资产编号
- */
- @ExcelProperty(value = "资产编号")
- private String serialNumber;
- /**
- * 使用证编号
- */
- @ExcelProperty(value = "使用证编号")
- private String useCertificateNo;
- /**
- * 安全级别
- */
- @ExcelProperty(value = "安全级别")
- private String securityLevel;
- /**
- * 使用年限
- */
- @ExcelProperty(value = "使用年限")
- private Long usefulLife;
- /**
- * 变动日期
- */
- @ExcelProperty(value = "变动日期")
- private Date changeDate;
- /**
- * 供货厂家
- */
- @ExcelProperty(value = "供货厂家")
- private String supplier;
- /**
- * 备注
- */
- @ExcelProperty(value = "备注")
- private String remark;
- /**
- *
- */
- @ExcelProperty(value = "")
- private String expr1;
- /**
- *
- */
- @ExcelProperty(value = "")
- private String expr2;
- }
|