| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package com.ruoyi.data.domain.vo;
- 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_gateway
- *
- * @author ruoyi
- * @date 2023-12-05
- */
- @Data
- @ExcelIgnoreUnannotated
- public class TblGatewayVo implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- *
- */
- @ExcelProperty(value = "")
- private Long id;
- /**
- * 序列号
- */
- @ExcelProperty(value = "序列号")
- private String sn;
- /**
- * 名称
- */
- @ExcelProperty(value = "名称")
- private String name;
- /**
- * 网关id
- */
- @ExcelProperty(value = "网关id")
- private String gatewayId;
- /**
- * 状态
- */
- @ExcelProperty(value = "状态")
- private String status;
- /**
- * 远程控制
- */
- @ExcelProperty(value = "远程控制")
- private String remoteManage;
- /**
- * 流量控制
- */
- @ExcelProperty(value = "流量控制")
- private Long flowControl;
- /**
- * 流量控制类型
- */
- @ExcelProperty(value = "流量控制类型")
- private String flowControlType;
- /**
- * 所属服务
- */
- @ExcelProperty(value = "所属服务")
- private String belongService;
- /**
- * 描述
- */
- @ExcelProperty(value = "描述")
- private String description;
- /**
- * 备注
- */
- @ExcelProperty(value = "备注")
- private String remark;
- /**
- *协议类型
- */
- @ExcelProperty(value = "协议类型")
- private Integer protocalType;
- @ExcelProperty(value = "经度")
- private String longitude;
- @ExcelProperty(value = "纬度")
- private String latitude;
- }
|