This commit is contained in:
2025-09-04 14:09:10 +08:00
parent fac72bc398
commit 9b9fd300a4

View File

@@ -0,0 +1,25 @@
package org.dromara.easyai.entity;
import org.dromara.easyai.rnnJumpNerveCenter.ModelParameter;
public class CreatorModel {
private ModelParameter semanticsModel;
private ModelParameter customModel;
public ModelParameter getSemanticsModel() {
return semanticsModel;
}
public void setSemanticsModel(ModelParameter semanticsModel) {
this.semanticsModel = semanticsModel;
}
public ModelParameter getCustomModel() {
return customModel;
}
public void setCustomModel(ModelParameter customModel) {
this.customModel = customModel;
}
}