using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.Module.MQ
{
///
///
///
public class MQPublishMessageReqDto
{
///
/// MQ URI
///
public string mqUri { get; set; }
///
/// Exchange Name
///
public string mqExchangeName { get; set; }
///
/// Queue Name
///
public string mqQueueName { get; set; }
///
/// 业务主键
///
public string BusinessId { get; set; }
///
/// 请求MQ报文(JSON串行化)
///
public string json { get; set; }
///
/// 是否默认压缩
///
public bool IsZip { get; set; } = false;
}
}