| | |
| | | package com.yuanchu.limslaboratory; |
| | | import com.yuanchu.limslaboratory.pojo.vo.PlanVo; |
| | | import com.yuanchu.limslaboratory.service.PlanService; |
| | | import com.yuanchu.limslaboratory.utils.MyUtil; |
| | | import org.junit.jupiter.api.Test; |
| | | import org.springframework.boot.test.context.SpringBootTest; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.List; |
| | | |
| | | @SpringBootTest |
| | | class SysApplicationTests { |
| | | |
| | | @Resource |
| | | private PlanService planService; |
| | | |
| | | @Test |
| | | void contextLoads() { |
| | |
| | | } |
| | | @Test |
| | | void TT() { |
| | | System.out.println(MyUtil.getTimeSixNumberCode("BG")); |
| | | |
| | | List<PlanVo> planVos = planService.selectAllPlan(null, null, null, null); |
| | | planVos.forEach(System.out::println); |
| | | } |
| | | } |
| | | |