package com.hxzk.gps.entity.WarnTongJi;
|
|
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-06-09
|
*/
|
@TableName("warn_tongji_company")
|
public class WarnTongjiCompany implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 标题
|
*/
|
private String title;
|
|
/**
|
* 条数
|
*/
|
private Integer num;
|
|
/**
|
* 是否显示 1:显示 0 不显示
|
*/
|
private Integer isshow;
|
|
/**
|
* 单位
|
*/
|
private String danwei;
|
|
/**
|
* 所属公司
|
*/
|
private String company;
|
|
/**
|
* 图标
|
*/
|
private String icon;
|
|
/**
|
* 更新时间
|
*/
|
private String addtime;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public Integer getIsshow() {
|
return isshow;
|
}
|
|
public void setIsshow(Integer isshow) {
|
this.isshow = isshow;
|
}
|
|
public String getDanwei() {
|
return danwei;
|
}
|
|
public void setDanwei(String danwei) {
|
this.danwei = danwei;
|
}
|
|
public String getCompany() {
|
return company;
|
}
|
|
public void setCompany(String company) {
|
this.company = company;
|
}
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public String getAddtime() {
|
return addtime;
|
}
|
|
public void setAddtime(String addtime) {
|
this.addtime = addtime;
|
}
|
|
@Override
|
public String toString() {
|
return "WarnTongjiCompany{" +
|
"id = " + id +
|
", title = " + title +
|
", num = " + num +
|
", isshow = " + isshow +
|
", danwei = " + danwei +
|
", company = " + company +
|
", icon = " + icon +
|
", addtime = " + addtime +
|
"}";
|
}
|
}
|