打印声音

This commit is contained in:
2026-03-31 11:41:04 +08:00
parent 15920ce384
commit 1d85cb67e1
5 changed files with 29 additions and 9 deletions

View File

@@ -1,13 +1,8 @@
package com.czg.account.dto.print;
import com.alibaba.fastjson2.annotation.JSONField;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotEmpty;
import lombok.Data;
import java.io.Serial;
import java.time.LocalDateTime;
/**
* @author Administrator
*/
@@ -94,4 +89,9 @@ public class PrinterAddDTO {
private String printType;
private Integer status;
/**
* 媒体音开关 0-关 1-开
*/
private Integer volumeSwitch;
}

View File

@@ -90,4 +90,9 @@ public class PrinterEditDTO {
* 打印机状态 online在线
*/
private String status;
/**
* 媒体音开关 0-关 1-开
*/
private Integer volumeSwitch;
}

View File

@@ -118,5 +118,9 @@ public class PrintMachine implements Serializable {
* 打印类型JSON数组 refund-确认退款单 handover-交班单 queue-排队取号
*/
private String printType;
/**
* 媒体音开关 0-关 1-开
*/
private Integer volumeSwitch;
}