| 123456789101112131415161718192021 |
- package com.tld;
- import com.tld.controller.GsPlugOutController;
- import com.tld.service.AskGoodsService;
- import org.junit.jupiter.api.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.boot.test.context.SpringBootTest;
- @SpringBootTest //启动Test类
- class TldConsumer9560ApplicationTests {
- @Autowired
- AskGoodsService askGoodsService;
- @Test
- void contextLoads() {
- //askGoodsService.plugOutRemoval("CK2303100001");
- }
- }
|