|
@@ -0,0 +1,47 @@
|
|
|
+package com.ruoyi.admin.test.base;
|
|
|
+
|
|
|
+import com.ruoyi.RuoYiApplication;
|
|
|
+import com.ruoyi.ams.inv.domain.form.InvLocIdSearchFrom;
|
|
|
+import com.ruoyi.ams.inv.domain.vo.InvLotLocIdLotattLargeScreenVO;
|
|
|
+import com.ruoyi.ams.inv.domain.vo.InvLotLocIdLotattVO;
|
|
|
+import com.ruoyi.ams.inv.service.IInvLotLocIdService;
|
|
|
+import com.ruoyi.common.core.controller.BaseController;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.junit.Test;
|
|
|
+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;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+
|
|
|
+@RunWith(SpringRunner.class)
|
|
|
+@SpringBootTest(classes = RuoYiApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
|
|
+@Slf4j
|
|
|
+public class TestDay extends BaseController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IInvLotLocIdService invLotLocIdService;
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void invLocIdSearchFrom(){
|
|
|
+ InvLocIdSearchFrom invLocIdSearchFrom = new InvLocIdSearchFrom();
|
|
|
+ List<InvLotLocIdLotattVO> list = invLotLocIdService.selectInvLocIdLotattList(invLocIdSearchFrom);
|
|
|
+ list.forEach(item -> System.out.println(item));
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void a(){
|
|
|
+ List<InvLotLocIdLotattLargeScreenVO> list = invLotLocIdService.selectInvLocIdLotattLargeScreenList();
|
|
|
+ list.forEach(item -> {
|
|
|
+ System.out.println(item.toString());
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|