package com.ycl.entity.equipment;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* <p>
|
* 卡口管理
|
* </p>
|
*
|
* @author zhanghua
|
* @since 2022-10-14
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("ums_equipment_bayonet")
|
public class EquipmentBayonet implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 卡口名称
|
*/
|
@TableField("name")
|
@ExcelProperty(index = 1, value = "卡口名称")
|
private String name;
|
|
/**
|
* 卡口经度
|
*/
|
@TableField("longitude")
|
@ExcelProperty(index = 1, value = "卡口名称")
|
private BigDecimal longitude;
|
|
/**
|
* 卡口纬度
|
*/
|
@TableField("latitude")
|
@ExcelProperty(index = 1, value = "卡口名称")
|
private BigDecimal latitude;
|
|
/**
|
* ip地址
|
*/
|
@TableField("ip_address")
|
private String ipAddress;
|
|
/**
|
* 端口号
|
*/
|
@TableField("port")
|
private String port;
|
|
/**
|
* 描述
|
*/
|
@TableField("description")
|
private String description;
|
|
/**
|
* 前端类型
|
*/
|
@TableField("front_end_type")
|
private Integer frontEndType;
|
|
/**
|
* 出入城类型
|
*/
|
@TableField("in_out_city_type")
|
private Integer inOutCityType;
|
|
/**
|
* 所属区域
|
*/
|
@TableField("belong_area")
|
private String belongArea;
|
}
|