35 lines
828 B
C#
35 lines
828 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace JingGong.Abp.Print.GoDEX
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 打印机状态
|
|||
|
/// </summary>
|
|||
|
public enum GoDEXEnum
|
|||
|
{
|
|||
|
待機狀態 = 00,
|
|||
|
耗材用盡 = 01,
|
|||
|
卡紙 = 02,
|
|||
|
碳帶用盡 = 03,
|
|||
|
印表頭開啟 = 04,
|
|||
|
背紙回收器已滿 = 05,
|
|||
|
檔案系統已滿 = 06,
|
|||
|
找不到檔案 = 07,
|
|||
|
檔名重複 = 08,
|
|||
|
指令語法錯誤 = 09,
|
|||
|
裁刀卡住或未安裝裁刀 = 10,
|
|||
|
無延伸記憶體 = 11,
|
|||
|
等待取走標籤 = 13,
|
|||
|
暫停 = 20,
|
|||
|
設定模式 = 21,
|
|||
|
鍵盤模式 = 22,
|
|||
|
印表機列印中 = 50,
|
|||
|
資料處理中 = 60,
|
|||
|
印表頭過熱 = 62,
|
|||
|
}
|
|||
|
}
|