zhangf
2024-05-08 0414ddb0b2b3a7199ae6181a770f97ac140dbd73
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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 + '\'' +
                '}';
    }
}