namespace WCS.Application; /// /// PLC输出参数 /// public class WcsPlcDto { /// /// 主键Id /// public long Id { get; set; } /// /// PLCIP地址 /// public string IP { get; set; } /// /// PLC端口号 /// public int Port { get; set; } /// /// 设备类型 /// public PLCEnum PLCType { get; set; } /// /// 设备类型 /// public PLCTypeEnum Type { get; set; } /// /// 仓库号 /// public string? WareHouseNo { get; set; } /// /// 描述 /// public string? Text { get; set; } /// /// 是否启用 /// public YesNoEnum Enable { get; set; } }