You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
635 B
Java
27 lines
635 B
Java
package com.sztzjy.linkCommerce.entity.dto;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/** Teaching-class task publication state. */
|
|
public class TaskPublication {
|
|
private boolean configured;
|
|
private List<String> taskKeys = new ArrayList<>();
|
|
|
|
public boolean isConfigured() {
|
|
return configured;
|
|
}
|
|
|
|
public void setConfigured(boolean configured) {
|
|
this.configured = configured;
|
|
}
|
|
|
|
public List<String> getTaskKeys() {
|
|
return taskKeys;
|
|
}
|
|
|
|
public void setTaskKeys(List<String> taskKeys) {
|
|
this.taskKeys = taskKeys == null ? new ArrayList<>() : taskKeys;
|
|
}
|
|
}
|