using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HDLMonitorService.Entity { public class MqAlarmReqPack { public string AlarmType { get; set; } public string ServiceName { get; set; } public string Address { get; set; } public string Title { get; set; } public string Content { get; set; } } }