Add File
This commit is contained in:
22
src/main/java/org/dromara/easyai/recommend/CodeBody.java
Normal file
22
src/main/java/org/dromara/easyai/recommend/CodeBody.java
Normal file
@@ -0,0 +1,22 @@
|
||||
package org.dromara.easyai.recommend;
|
||||
|
||||
public class CodeBody {
|
||||
private int id;
|
||||
private float power;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public float getPower() {
|
||||
return power;
|
||||
}
|
||||
|
||||
public void setPower(float power) {
|
||||
this.power = power;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user