Files
yinyitong-zhongyuyuan-dll-hang/src/main/java/com/dpkj/modules/autoReplyPrint/vo/PrinterStatus.java
2025-03-19 10:22:12 +08:00

69 lines
1.4 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.dpkj.modules.autoReplyPrint.vo;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class PrinterStatus {
/**
* sp服务版本号
*/
private String SPVersion;
/**
* 打印机状态
* HEALTHY 正常
* FATAL 故障
* BUSY
* NODEVICE 无设备
*/
private String StDeviceStatus;
/**
* 介质状态
* PRESENT 介质在通道
* NOTPRESENT 无介质
* JAMMED 卡介质
* NOTSUPP 不支持
* UNKNOWN 未知
* EXITING 介质在出口
* RETRACTED 介质被回收(复位时)
*/
private String StMedia;
/**
* 磁带状态
* TONERFULL 碳带满
* TONERLOW 碳带少
* TONEROUT 缺碳带
* TONERNOTSUPP 不支持碳带检测
* TONERUNKNOWN 碳带未知
*/
private String StToner;
/**
* 墨盒状态
* INKFULL 墨盒满
* INKLOW 墨盒少
* INKOUT 缺墨盒
* INKNOTSUPP 不支持墨盒检测
* INKUNKNOWN 墨盒未知
*/
private String StInk;
/**
* 纸盒扩展,取前面两个
*/
private String StPaperEx;
/**
* 设备扩展,第一个是打印机状态,第二个是盖章机状态
*/
private String StDeviceExStatus;
}