2025-05-08 11:25:08 +08:00

26 lines
413 B
C#

using JiShe.CollectBus.Common.Attributes;
using Volo.Abp.EventBus;
namespace JiShe.CollectBus.Samples;
[EventName("Sample.Kafka.Test")]
public class SampleDto
{
public int Value { get; set; }
}
[EventName("Sample.Kafka.Test2")]
public class SampleDto2
{
public int Value { get; set; }
}
public class KafkaSendDto
{
public string Address { get; set; }
public string Frame { get; set; }
}