45 lines
941 B
Java
45 lines
941 B
Java
|
|
package com.engine.salary.component;
|
||
|
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
|
||
|
|
public class WeaFormOption implements Serializable {
|
||
|
|
private static final long serialVersionUID = -4539753893868901626L;
|
||
|
|
private String id;
|
||
|
|
private String content;
|
||
|
|
private boolean disabled;
|
||
|
|
|
||
|
|
public WeaFormOption() {
|
||
|
|
this.disabled = Boolean.FALSE;
|
||
|
|
}
|
||
|
|
|
||
|
|
public WeaFormOption(String id, String content) {
|
||
|
|
this.disabled = Boolean.FALSE;
|
||
|
|
this.id = id;
|
||
|
|
this.content = content;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getId() {
|
||
|
|
return this.id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId(String id) {
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getContent() {
|
||
|
|
return this.content;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setContent(String content) {
|
||
|
|
this.content = content;
|
||
|
|
}
|
||
|
|
|
||
|
|
public boolean isDisabled() {
|
||
|
|
return this.disabled;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDisabled(boolean disabled) {
|
||
|
|
this.disabled = disabled;
|
||
|
|
}
|
||
|
|
}
|