package com.ycl.vo.equipment;
|
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* <p>
|
* 卡口管理
|
* </p>
|
*
|
* @author zhanghua
|
* @since 2022-10-14
|
*/
|
@Data
|
@ApiModel(value = "卡口管理VO")
|
public class EquipmentBayonetVO {
|
|
/**
|
* 主键
|
*/
|
@ExcelIgnore
|
private Integer id;
|
|
/**
|
* 卡口名称
|
*/
|
@ApiModelProperty(value = "卡口名称")
|
@ExcelProperty(index = 0, value = "卡口名称")
|
private String name;
|
|
/**
|
* 卡口经度
|
*/
|
@ApiModelProperty(value = "卡口经度")
|
@ExcelProperty(index = 1, value = "卡口经度")
|
private BigDecimal longitude;
|
|
/**
|
* 卡口纬度
|
*/
|
@ApiModelProperty(value = "卡口纬度")
|
@ExcelProperty(index = 2, value = "卡口纬度")
|
private BigDecimal latitude;
|
|
/**
|
* ip地址
|
*/
|
@ApiModelProperty(value = "ip地址")
|
@ExcelProperty(index = 3, value = "ip地址")
|
private String ipAddress;
|
|
/**
|
* 端口号
|
*/
|
@ApiModelProperty(value = "端口号")
|
@ExcelProperty(index = 4, value = "端口号")
|
private String port;
|
|
/**
|
* 描述
|
*/
|
@ApiModelProperty(value = "描述")
|
@ExcelProperty(index = 7, value = "描述")
|
private String description;
|
|
/**
|
* 前端类型
|
*/
|
@ApiModelProperty(value = "前端类型")
|
@ExcelIgnore
|
private Integer frontEndType;
|
|
/**
|
* 出入城类型
|
*/
|
@ApiModelProperty(value = "出入城类型")
|
@ExcelIgnore
|
private Integer inOutCityType;
|
/**
|
* 前端类型
|
*/
|
@ApiModelProperty(value = "前端类型")
|
@ExcelProperty(index = 5, value = "前端类型")
|
private String frontEndTypeName;
|
|
/**
|
* 出入城类型
|
*/
|
@ApiModelProperty(value = "出入城类型")
|
@ExcelProperty(index = 6, value = "出入城类型")
|
private String inOutCityTypeName;
|
|
@ApiModelProperty(value = "所属区域")
|
@ExcelProperty(index = 7, value = "所属区域")
|
private String belongArea;
|
}
|