Revert "change: 调整工程结构."

This reverts commit f6a3b336de.
This commit is contained in:
2025-03-26 20:28:09 +08:00
parent f6a3b336de
commit 19ef4f1262
32 changed files with 51 additions and 74 deletions

View File

@@ -0,0 +1,12 @@
package com.serliunx.statemanagement.support;
/**
* @author <a href="mailto:serliunx@yeah.net">SerLiunx</a>
* @since 2025/1/24
*/
public enum PrinterEvent {
TURN_ON,
TURN_OFF,
}

View File

@@ -0,0 +1,14 @@
package com.serliunx.statemanagement.support;
/**
* @author <a href="mailto:serliunx@yeah.net">SerLiunx</a>
* @version 1.0.0
* @since 2024/12/28
*/
public enum PrinterState {
IDLE,
SCANNING,
PRINTING,
STOPPING,
STOPPED
}