You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
C#
71 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BarTenderPrint
|
|
{
|
|
public class BigLableInfo
|
|
{
|
|
/// <summary>
|
|
/// 条码
|
|
/// </summary>
|
|
public string barcode { get; set; }
|
|
/// <summary>
|
|
/// 产品信息
|
|
/// </summary>
|
|
public string ProductInfo { get; set; }
|
|
/// <summary>
|
|
/// 校验码
|
|
/// </summary>
|
|
public string CheckCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 需要校验的字符串
|
|
/// </summary>
|
|
public string CheckCodeString { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日期转换后的字符串
|
|
/// </summary>
|
|
public string DateString { get; set; }
|
|
}
|
|
public enum EnYear
|
|
{
|
|
B=2011,
|
|
C=2012,
|
|
D=2013,
|
|
E=2014,
|
|
F=2015,
|
|
G=2016,
|
|
H=2017,
|
|
J=2018,
|
|
K=2019,
|
|
L=2020,
|
|
M=2021,
|
|
N=2022,
|
|
P=2023,
|
|
R=2024,
|
|
S=2025,
|
|
T=2026,
|
|
V=2027,
|
|
W=2028,
|
|
X=2029,
|
|
Y=2030,
|
|
}
|
|
public enum EnMonth
|
|
{
|
|
A=1,B=2,C=3,D=4,E=5,F=6,G=7,H=8,J=9,K=10,L=11,M=12
|
|
}
|
|
|
|
public enum Endate
|
|
{
|
|
A=10,B=11,C=12,D=13,E=14,F=15,G=16,H=17,J=18,K=19,L=20,M=21,N=22,P=23,R=24,S=25,T=26,U=27,V=28,X=30,Y=31
|
|
}
|
|
|
|
public enum EncheckCode
|
|
{
|
|
A = 10, B = 11, C = 12, D = 13, E = 14, F = 15, G = 16, H = 17,I=18, J = 19, K = 20, L = 21, M = 22, N = 23,O=24, P = 25, Q=26,R = 27, S = 28, T = 29, U = 30, V = 31, W=32,X = 33, Y = 34,Z=35
|
|
}
|
|
}
|