Add File
This commit is contained in:
26
src/main/java/org/dromara/easyai/nerveEntity/ConvSize.java
Normal file
26
src/main/java/org/dromara/easyai/nerveEntity/ConvSize.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package org.dromara.easyai.nerveEntity;
|
||||
|
||||
/**
|
||||
* @author lidapeng
|
||||
* @time 2025/2/27 20:26
|
||||
*/
|
||||
public class ConvSize {
|
||||
private int XInput;
|
||||
private int YInput;
|
||||
|
||||
public int getXInput() {
|
||||
return XInput;
|
||||
}
|
||||
|
||||
public void setXInput(int XInput) {
|
||||
this.XInput = XInput;
|
||||
}
|
||||
|
||||
public int getYInput() {
|
||||
return YInput;
|
||||
}
|
||||
|
||||
public void setYInput(int YInput) {
|
||||
this.YInput = YInput;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user