123456789101112131415161718192021222324 |
- package cn.cslg.pas.service;
- import org.junit.jupiter.api.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.boot.test.context.SpringBootTest;
- /**
- * @author chenyu
- * @date 2023/8/31
- */
- @SpringBootTest
- public class PatentRightServiceTests {
- @Autowired
- private TestService testService1;
- /**
- * 查询权利要求树
- */
- @Test
- void queryPatentRightTree() {
- testService1.getConfigById(76,2703);
- }
- }
|