IntelligentRecognition/ah-jjsp-service/.svn/pristine/84/84516f9d8d90240227353e5d0d0...

37 lines
624 B
Plaintext

package com.securityControl.system.domain.vo;
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;
}
}