namespace WCS.Application;
///
/// PLC输出参数
///
public class WcsPlcOutput
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// PLCIP地址
///
public string IP { get; set; }
///
/// PLC端口号
///
public int Port { get; set; }
///
/// PLC类型
///
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; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
///
/// 创建者Id
///
public long? CreateUserId { get; set; }
///
/// 创建者姓名
///
public string? CreateUserName { get; set; }
///
/// 修改者Id
///
public long? UpdateUserId { get; set; }
///
/// 修改者姓名
///
public string? UpdateUserName { get; set; }
///
/// 创建者部门Id
///
public long? CreateOrgId { get; set; }
///
/// 创建者部门名称
///
public string? CreateOrgName { get; set; }
///
/// 软删除
///
public bool IsDelete { get; set; }
}