46 lines
823 B
Plaintext
46 lines
823 B
Plaintext
package com.bonus.sys.beans;
|
|
|
|
public class StationBean {
|
|
|
|
private Integer id;
|
|
|
|
private String name;
|
|
|
|
private String description;
|
|
|
|
private String isActive;
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name == null ? null : name.trim();
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description == null ? null : description.trim();
|
|
}
|
|
|
|
public String getIsActive() {
|
|
return isActive;
|
|
}
|
|
|
|
public void setIsActive(String isActive) {
|
|
this.isActive = isActive == null ? null : isActive.trim();
|
|
}
|
|
} |