37 lines
623 B
Plaintext
37 lines
623 B
Plaintext
package com.sercurityControl.proteam.domain;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 选中
|
|
*/
|
|
@Data
|
|
public class CheckArr {
|
|
|
|
/** 复选框标记*/
|
|
private String type;
|
|
/** 复选框是否选中*/
|
|
private String checked;
|
|
|
|
public CheckArr(String type, String checked) {
|
|
this.type = type;
|
|
this.checked = checked;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public String getChecked() {
|
|
return checked;
|
|
}
|
|
|
|
public void setChecked(String checked) {
|
|
this.checked = checked;
|
|
}
|
|
}
|