2025-04-18 11:01:56 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MasaBlazorApp3.Pojo.Config
|
|
|
|
|
{
|
|
|
|
|
public class PortConfig
|
|
|
|
|
{
|
|
|
|
|
public string drawerPortPath { get; set; }
|
|
|
|
|
|
|
|
|
|
public int drawerProtocol { get; set; }
|
|
|
|
|
|
|
|
|
|
public string scanCodePortPath { get; set; }
|
|
|
|
|
|
|
|
|
|
public string canBusPortPath { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool canBusExsit { get; set; }
|
|
|
|
|
public int doorAddr { get; set; }
|
|
|
|
|
public int storageBoxAddr { get; set; }
|
2025-06-24 08:55:34 +08:00
|
|
|
|
//存在冰箱串口
|
|
|
|
|
public bool fridgePortExist { get; set; }
|
|
|
|
|
//冰箱串口号
|
|
|
|
|
public string fridgePortPath { get; set; }
|
2025-04-18 11:01:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|