|
@@ -0,0 +1,22 @@
|
|
|
|
|
+package com.zhongshu.card.server.core.stream;
|
|
|
|
|
+
|
|
|
|
|
+import com.github.microservice.app.stream.StreamConsumer;
|
|
|
|
|
+import com.github.microservice.stream.model.SignModel;
|
|
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 用户无感支付签约状态发生变化
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author TRX
|
|
|
|
|
+ * @date 2024/8/30
|
|
|
|
|
+ */
|
|
|
|
|
+@Slf4j
|
|
|
|
|
+@Component("unionFrictionChangeStream")
|
|
|
|
|
+public class UnionFrictionChangeStream extends StreamConsumer<SignModel> {
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void accept(SignModel signModel) {
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+}
|