diff --git a/src/main/java/org/dromara/easyai/entity/Model.java b/src/main/java/org/dromara/easyai/entity/Model.java new file mode 100644 index 0000000..c4150d8 --- /dev/null +++ b/src/main/java/org/dromara/easyai/entity/Model.java @@ -0,0 +1,60 @@ +package org.dromara.easyai.entity; + + +import org.dromara.easyai.nerveCenter.ModelParameter; + +import java.util.Map; + +/** + * @param + * @DATA + * @Author LiDaPeng + * @Description 食物模型 + */ +public class Model { + private ModelParameter modelR; + private ModelParameter modelG; + private ModelParameter modelB; + private ModelParameter modelFood; + private Map mapping; + + public Map getMapping() { + return mapping; + } + + public void setMapping(Map mapping) { + this.mapping = mapping; + } + + public ModelParameter getModelR() { + return modelR; + } + + public void setModelR(ModelParameter modelR) { + this.modelR = modelR; + } + + public ModelParameter getModelG() { + return modelG; + } + + public void setModelG(ModelParameter modelG) { + this.modelG = modelG; + } + + public ModelParameter getModelB() { + return modelB; + } + + public void setModelB(ModelParameter modelB) { + this.modelB = modelB; + } + + public ModelParameter getModelFood() { + return modelFood; + } + + public void setModelFood(ModelParameter modelFood) { + this.modelFood = modelFood; + } +}