wl
2022-11-08 bdb4a481d7ab7085a0832a7f1c0f5295596d498c
ycl-platform/src/main/java/com/ycl/entity/equipment/EquipmentBayonet.java
@@ -1,5 +1,6 @@
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;
@@ -35,18 +36,21 @@
     * 卡口名称
     */
    @TableField("bayonet_name")
    @ExcelProperty(index = 1, value = "卡口名称")
    private String bayonetName;
    /**
     * 卡口经度
     */
    @TableField("longitude")
    @ExcelProperty(index = 1, value = "卡口名称")
    private BigDecimal longitude;
    /**
     * 卡口纬度
     */
    @TableField("latitude")
    @ExcelProperty(index = 1, value = "卡口名称")
    private BigDecimal latitude;
    /**
@@ -66,4 +70,22 @@
     */
    @TableField("description")
    private String description;
    /**
     * 前端类型
     */
    @TableField("front_end_type")
    private Integer frontEndType;
    /**
     * 出入城类型
     */
    @TableField("in_out_city_type")
    private Integer inOutCityType;
    /**
     * 所属区域
     */
    @TableField("belongArea")
    private String belong_area;
}