This commit is contained in:
2025-09-04 14:09:09 +08:00
parent daa4edf54c
commit 6e3674decc

View File

@@ -0,0 +1,22 @@
package org.dromara.easyai.entity;
public class TypeMapping {
private int type;
private int mapping;
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public int getMapping() {
return mapping;
}
public void setMapping(int mapping) {
this.mapping = mapping;
}
}