package com.hxzk.gps.entity.FzRadar;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author YuZhiTong
|
* @since 2025-05-22
|
*/
|
@TableName("tb_fzanchor")
|
@Data
|
public class TbFzanchor implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 序号
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 防撞基站名称
|
*/
|
private String name;
|
|
/**
|
* 防撞基站Id
|
*/
|
private String achorid;
|
|
/**
|
* 防撞距离
|
*/
|
private String fzdis;
|
|
/**
|
* 流量卡号
|
*/
|
private String ccid;
|
|
/**
|
* 版本号
|
*/
|
private String version;
|
|
/**
|
* 更新时间
|
*/
|
private String addtime;
|
|
/**
|
* 保留位
|
*/
|
private String baoliu1;
|
|
/**
|
* 保留位
|
*/
|
private String baoliu2;
|
|
/**
|
* 保留位
|
*/
|
private String baoliu3;
|
|
/**
|
* 保留位
|
*/
|
private String baoliu4;
|
|
/**
|
* 保留位
|
*/
|
private String baoliu5;
|
|
/**
|
* 所属公司
|
*/
|
private String company;
|
|
}
|