package com.gkhy.safePlatform.emergency.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
@TableName("emergency_team")
|
public class EmergencyTeamInfoPageDO {
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Byte teamLevel;
|
|
private String teamName;
|
|
private String principalPhone;
|
|
private String teamDesc;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Byte getTeamLevel() {
|
return teamLevel;
|
}
|
|
public void setTeamLevel(Byte teamLevel) {
|
this.teamLevel = teamLevel;
|
}
|
|
public String getTeamName() {
|
return teamName;
|
}
|
|
public void setTeamName(String teamName) {
|
this.teamName = teamName;
|
}
|
|
public String getPrincipalPhone() {
|
return principalPhone;
|
}
|
|
public void setPrincipalPhone(String principalPhone) {
|
this.principalPhone = principalPhone;
|
}
|
|
public String getTeamDesc() {
|
return teamDesc;
|
}
|
|
public void setTeamDesc(String teamDesc) {
|
this.teamDesc = teamDesc;
|
}
|
|
@Override
|
public String toString() {
|
return "EmergencyTeamInfoPageDO{" +
|
"id=" + id +
|
", teamLevel='" + teamLevel + '\'' +
|
", teamName='" + teamName + '\'' +
|
", principalPhone='" + principalPhone + '\'' +
|
", teamDesc='" + teamDesc + '\'' +
|
'}';
|
}
|
}
|