33 lines
657 B
C#
33 lines
657 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
namespace JinYuan.Models
|
||
|
|
{
|
||
|
|
public class BTWConfig
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 是否连接打印机服务器
|
||
|
|
/// </summary>
|
||
|
|
public bool IsConnectPrinter;
|
||
|
|
/// <summary>
|
||
|
|
/// 箱唛码模板路径
|
||
|
|
/// </summary>
|
||
|
|
public string containerBTWPath;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 栈板码模板路径
|
||
|
|
/// </summary>
|
||
|
|
public string palletBTWPath;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// printerName
|
||
|
|
/// </summary>
|
||
|
|
public string printerName;
|
||
|
|
}
|
||
|
|
}
|