打印记录日志

This commit is contained in:
张松
2025-03-14 18:00:33 +08:00
parent 1879d3f6d4
commit 2c531d8bc7
4 changed files with 278 additions and 135 deletions

View File

@@ -1,5 +1,6 @@
package com.czg.order.service;
import com.czg.account.entity.PrintMachine;
import com.mybatisflex.core.service.IService;
import com.czg.order.entity.PrintMachineLog;
@@ -10,5 +11,6 @@ import com.czg.order.entity.PrintMachineLog;
* @since 2025-03-11
*/
public interface PrintMachineLogService extends IService<PrintMachineLog> {
void save(PrintMachine config, String bizType, String printContent, Object respJson);
}