Add File
This commit is contained in:
22
src/main/java/org/dromara/easyai/entity/TypeMapping.java
Normal file
22
src/main/java/org/dromara/easyai/entity/TypeMapping.java
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user