You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
webcrawler/web/src/main/java/web/model/DataModelForm.java

15 lines
308 B

package web.model;
import java.util.List;
public class DataModelForm extends db.model.bilibili.DataModel {
private List<Integer> typeIds;
public List<Integer> getTypeIds() {
return typeIds;
}
public void setTypeIds(List<Integer> typeIds) {
this.typeIds = typeIds;
}
}