天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
673 B

using System;
using System.Collections.Generic;
using System.Text;
namespace QM.Assist
{
public class LabelInfo
{
private System.Data.DataTable labelData = null;
private string barCode = "";
public string BarCode
{
get { return barCode; }
set { barCode = value; }
}
public System.Data.DataTable LabelData
{
get { return labelData; }
set { labelData = value; }
}
private string printerName = "";
public string PrinterName
{
get { return printerName; }
set { printerName = value; }
}
}
}