Test.java 800 字节

import com.tianbo.analysis.NmmsAdminApplication;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest(classes = NmmsAdminApplication.class)
@Slf4j
public class Test {


    @org.junit.jupiter.api.Test
    public void send(){
//        MSGS msgs = new MSGS();
//        MSG msg = new MSG();
//
//        HEADER header = new HEADER();
//        header.setSNDR("TXD");
//        header.setDDTM("20210429103322081");
//        header.setSEQNO(2021042910);
//        header.setTYPE("HYXX");
//        header.setSTYPE("ISLI");
//
//        msg.setHEADER(header);
//        msg.setBODY("111test");
//
//
//
//
//        msgs.setMSG(msg);
//
//        ResultJson response = kafkaSendApi.send(msgs);
//        log.info(response.toString());
    }
}