package com.ruoyi.oa.domain.vo;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.ruoyi.common.annotation.Dict;
|
import com.ruoyi.common.annotation.ExcelDictFormat;
|
import com.ruoyi.common.convert.ExcelDictConvert;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import java.util.Date;
|
|
|
|
/**
|
* NVR设备视图对象 sg_nvr
|
*
|
* @author ruoyi
|
* @date 2022-05-11
|
*/
|
@Data
|
@ApiModel("NVR设备视图对象")
|
@ExcelIgnoreUnannotated
|
public class SgNvrVo {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
*
|
*/
|
@ExcelProperty(value = "")
|
@ApiModelProperty("")
|
private Long id;
|
/**
|
* 高校
|
*/
|
private Long schoolId;
|
/**
|
* 部署名称
|
*/
|
@ExcelProperty(value = "部署名称")
|
@ApiModelProperty("部署名称")
|
private String deploymentName;
|
|
/**
|
* 通道
|
*/
|
@ExcelProperty(value = "通道")
|
@ApiModelProperty("通道")
|
@Dict(dicCode = "DICT109")
|
private String passageway;
|
|
/**
|
* LAN1
|
*/
|
@ExcelProperty(value = "LAN1")
|
@ApiModelProperty("LAN1")
|
private String lanOne;
|
|
/**
|
* ip1
|
*/
|
@ExcelProperty(value = "ip1")
|
@ApiModelProperty("ip1")
|
private String ipOne;
|
|
/**
|
* LAN2
|
*/
|
@ExcelProperty(value = "LAN2")
|
@ApiModelProperty("LAN2")
|
private String lanTwo;
|
|
/**
|
* ip2
|
*/
|
@ExcelProperty(value = "ip2")
|
@ApiModelProperty("ip2")
|
private String ipTwo;
|
|
/**
|
* 登录账号
|
*/
|
@ExcelProperty(value = "登录账号")
|
@ApiModelProperty("登录账号")
|
private String loginAccount;
|
|
/**
|
* 硬盘
|
*/
|
@ExcelProperty(value = "硬盘")
|
@ApiModelProperty("硬盘")
|
private String hardDisk;
|
|
/**
|
* 建筑单元
|
*/
|
@ExcelProperty(value = "建筑单元")
|
@ApiModelProperty("建筑单元")
|
@Dict(dictTable = "bs_building", dicCode = "id", dicText = "detailed_name")
|
private Long buildingId;
|
|
/**
|
* 所属机构
|
*/
|
@ExcelProperty(value = "所属机构")
|
@ApiModelProperty("所属机构")
|
@Dict(dictTable = "bs_organization", dicCode = "id", dicText = "detailed_name")
|
private Long organizationId;
|
|
/**
|
* 施工批次
|
*/
|
@ExcelProperty(value = "施工批次")
|
@ApiModelProperty("施工批次")
|
@Dict(dictTable = "sg_construction_batch", dicCode = "id", dicText = "batch")
|
private Long constructionBatchId;
|
|
/**
|
* 序列号
|
*/
|
@ExcelProperty(value = "序列号")
|
@ApiModelProperty("序列号")
|
private String serialNumber;
|
|
/**
|
* 型号
|
*/
|
@ExcelProperty(value = "型号")
|
@ApiModelProperty("型号")
|
private String model;
|
|
/**
|
* 生产厂商
|
*/
|
@ExcelProperty(value = "生产厂商")
|
@ApiModelProperty("生产厂商")
|
@Dict(dictTable = "dev_manufacturer", dicCode = "id", dicText = "name")
|
private Long manufacturerId;
|
|
/**
|
* 附件
|
*/
|
private String filePath;
|
}
|