namespace Admin.NET.Application; /// /// 配置设备报警输出参数 /// public class WmsConfigDeviceWarningOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 设备区域 /// public Admin.NET.Application.DeviceAreaCodeEnum DeviceAreaCode { get; set; } /// /// 报警类型 /// public Admin.NET.Application.DeviceWarningTypeEnum DeviceWarningType { get; set; } /// /// 报警代码 /// public string WarningCode { get; set; } /// /// 报警内容 /// public string WarningContent { 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; } /// /// 软删除 /// public bool IsDelete { get; set; } }