HKC_Blazor/MasaBlazorApp3/Pojo/Config/PortConfig.cs

37 lines
1.1 KiB
C#
Raw Normal View History

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; }
2025-08-21 18:25:23 +08:00
//抽屉总数量8个抽屉与16个抽屉对应发单支指令不同开抽屉指令也不同
public int totalDrawerCount { get; set; }
public bool canBusTwoExsit { get; set; }
public string canBusPortPathTwo { get; set; }
2025-04-18 11:01:56 +08:00
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-08-30 08:54:40 +08:00
//储物箱串口
public int StorageCan { get; set; }
//延时间隔
public int delayTime { get; set; }
2025-04-18 11:01:56 +08:00
}
}