55 lines
904 B
C#
55 lines
904 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FATrace.App.UniCodeToZPL
|
|
{
|
|
/// <summary>
|
|
/// 压缩使用标记枚举值
|
|
/// </summary>
|
|
public enum CompressCode
|
|
{
|
|
G = 1,
|
|
H = 2,
|
|
I = 3,
|
|
J = 4,
|
|
K = 5,
|
|
L = 6,
|
|
M = 7,
|
|
N = 8,
|
|
O = 9,
|
|
P = 10,
|
|
Q = 11,
|
|
R = 12,
|
|
S = 13,
|
|
T = 14,
|
|
U = 15,
|
|
V = 16,
|
|
W = 17,
|
|
X = 18,
|
|
Y = 19,
|
|
g = 20,
|
|
h = 40,
|
|
i = 60,
|
|
j = 80,
|
|
k = 100,
|
|
l = 120,
|
|
m = 140,
|
|
n = 160,
|
|
o = 180,
|
|
p = 200,
|
|
q = 220,
|
|
r = 240,
|
|
s = 260,
|
|
t = 280,
|
|
u = 300,
|
|
v = 320,
|
|
w = 340,
|
|
x = 360,
|
|
y = 380,
|
|
z = 400,
|
|
}
|
|
}
|