package com.hxzk.gps.entity.Log;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author YuZhiTong
|
* @since 2025-05-27
|
*/
|
@TableName("tb_lixianrecord_0829")
|
public class TbLixianrecord0829 implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 标签ID
|
*/
|
private String tagid;
|
|
/**
|
* 姓名
|
*/
|
private String name;
|
|
/**
|
* 部门
|
*/
|
private String bumen;
|
|
/**
|
* 电话
|
*/
|
private String phone;
|
|
/**
|
* 离线时间
|
*/
|
private String time;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getTagid() {
|
return tagid;
|
}
|
|
public void setTagid(String tagid) {
|
this.tagid = tagid;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getBumen() {
|
return bumen;
|
}
|
|
public void setBumen(String bumen) {
|
this.bumen = bumen;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
@Override
|
public String toString() {
|
return "TbLixianrecord0829{" +
|
"id = " + id +
|
", tagid = " + tagid +
|
", name = " + name +
|
", bumen = " + bumen +
|
", phone = " + phone +
|
", time = " + time +
|
"}";
|
}
|
}
|