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 + '\'' +
|
'}';
|
}
|
}
|