From 8e19abcde9e99f598ae7bb000979d7765c31afa9 Mon Sep 17 00:00:00 2001 From: inter Date: Thu, 4 Sep 2025 14:09:09 +0800 Subject: [PATCH] Add File --- .../java/org/dromara/easyai/entity/Model.java | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/main/java/org/dromara/easyai/entity/Model.java 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; + } +}