2024-12-23 10:18:23 +08:00
|
|
|
|
package com.dpkj.common.config;
|
|
|
|
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @Auther: 萧道子
|
|
|
|
|
|
* @Date: 2024/4/28 14:55
|
|
|
|
|
|
* @Description:
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Data
|
|
|
|
|
|
@Component
|
|
|
|
|
|
@ConfigurationProperties(prefix = "dpkj.printer")
|
|
|
|
|
|
public class PrinterConfig {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 打印机连接方式 USB: usb连接 | BTMS:串口连接
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String connectionType;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 打印端口 串口连接下使用
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String portName;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 波特率 串口连接下使用
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer baudRate;
|
2025-03-26 23:21:19 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 终端号
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String terminalNumber;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 时间格式
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String timeType;
|
|
|
|
|
|
|
2024-12-23 10:18:23 +08:00
|
|
|
|
}
|