打印问题

This commit is contained in:
2025-12-30 10:23:04 +08:00
parent 329d9dfb3d
commit 7384b67c50
9 changed files with 415 additions and 301 deletions

View File

@@ -24,9 +24,5 @@ public class OrderInfoPrintDTO implements Serializable {
*/
@NotNull(message = "打印类型不为空")
private Integer type;
/**
* 打印机id
*/
private Long machineId;
}

View File

@@ -11,6 +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);
void save(PrintMachine config, String bizType, String printContent, String respJson);
}