| | |
| | | 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; |
| | |
| | | /** |
| | | * 卡口名称 |
| | | */ |
| | | @TableField("bayonet_name") |
| | | private String bayonetName; |
| | | @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; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @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; |
| | | } |