完成小程序直播添加相关功能

This commit is contained in:
xuwenbo
2020-08-11 11:25:52 +08:00
parent 61d5e010c9
commit 834b6128eb
22 changed files with 738 additions and 61 deletions

View File

@ -1,12 +1,21 @@
package co.yixiang.test;
import co.yixiang.modules.wechat.service.dto.WxMaLiveInfo;
import co.yixiang.modules.wechat.service.WxMaLiveService;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class BaseTest {
@Autowired
private WxMaLiveService wxMaLiveService;
public void test(){
WxMaLiveInfo.RoomInfo roomInfo = new WxMaLiveInfo.RoomInfo();
roomInfo.setName("测试直播间");
}
}