|
@@ -1,9 +1,12 @@
|
|
package com.miaxis.test;
|
|
package com.miaxis.test;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.miaxis.TwzdApplication;
|
|
import com.miaxis.TwzdApplication;
|
|
import com.miaxis.question.mapper.QuestionInfoMapper;
|
|
import com.miaxis.question.mapper.QuestionInfoMapper;
|
|
import com.miaxis.question.vo.QuestionInfoExcelTypeVo;
|
|
import com.miaxis.question.vo.QuestionInfoExcelTypeVo;
|
|
import com.miaxis.question.vo.QuestionInfoExcelVo;
|
|
import com.miaxis.question.vo.QuestionInfoExcelVo;
|
|
|
|
+import com.miaxis.wx.domain.WxForeverCode;
|
|
|
|
+import com.miaxis.wx.service.IWxForeverCodeService;
|
|
import com.miaxis.wx.service.impl.WxGzhServiceImpl;
|
|
import com.miaxis.wx.service.impl.WxGzhServiceImpl;
|
|
import org.apache.poi.hssf.usermodel.*;
|
|
import org.apache.poi.hssf.usermodel.*;
|
|
import org.junit.Test;
|
|
import org.junit.Test;
|
|
@@ -29,7 +32,15 @@ public class NormalTest {
|
|
@Resource
|
|
@Resource
|
|
QuestionInfoMapper questionInfoMapper;
|
|
QuestionInfoMapper questionInfoMapper;
|
|
|
|
|
|
|
|
+ @Resource
|
|
|
|
+ IWxForeverCodeService wxForeverCodeService;
|
|
|
|
|
|
|
|
+ @Test
|
|
|
|
+ public void test11() throws Exception {
|
|
|
|
+ String content = "k3vvps";
|
|
|
|
+ WxForeverCode wxForeverCode = wxForeverCodeService.getOne(new QueryWrapper<WxForeverCode>().eq("code", content).isNull("openid"));
|
|
|
|
+ System.out.println(11);
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
@Test
|
|
@Test
|