liusuyi
2026-06-02 f652169cc5d6501511eece5df57b7b396fd7a7ab
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
package com.ard.work.health.domain;
 
public class GetEquipmentAlertInfoParam {
 
    private Integer id;
 
    private String position;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getPosition() {
        return position;
    }
 
    public void setPosition(String position) {
        this.position = position;
    }
 
    @Override
    public String toString() {
        return "GetEquipmentAlertInfoParam{" +
                "id=" + id +
                ", position='" + position + '\'' +
                '}';
    }
}