Skip to content

Commit

Permalink
✨ spring-boot-demo-orm-mybatis-plus 完成
Browse files Browse the repository at this point in the history
  • Loading branch information
xkcoding committed Nov 15, 2018
1 parent ed5f400 commit b2d171c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions spring-boot-demo-orm-mybatis-plus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,15 +283,15 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements Us
}
```

## UserServiceImplTest.java
## UserServiceTest.java

```java
/**
* <p>
* User Service 测试
* </p>
*
* @package: com.xkcoding.orm.mybatis.plus.service.impl
* @package: com.xkcoding.orm.mybatis.plus.service
* @description: User Service 测试
* @author: yangkai.shen
* @date: Created in 2018/11/8 18:13
Expand All @@ -300,7 +300,7 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements Us
* @modified: yangkai.shen
*/
@Slf4j
public class UserServiceImplTest extends SpringBootDemoOrmMybatisPlusApplicationTests {
public class UserServiceTest extends SpringBootDemoOrmMybatisPlusApplicationTests {
@Autowired
private UserService userService;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.xkcoding.orm.mybatis.plus.service.impl;
package com.xkcoding.orm.mybatis.plus.service;

import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.date.DateTime;
Expand All @@ -24,7 +24,7 @@
* User Service 测试
* </p>
*
* @package: com.xkcoding.orm.mybatis.plus.service.impl
* @package: com.xkcoding.orm.mybatis.plus.service
* @description: User Service 测试
* @author: yangkai.shen
* @date: Created in 2018/11/8 18:13
Expand All @@ -33,7 +33,7 @@
* @modified: yangkai.shen
*/
@Slf4j
public class UserServiceImplTest extends SpringBootDemoOrmMybatisPlusApplicationTests {
public class UserServiceTest extends SpringBootDemoOrmMybatisPlusApplicationTests {
@Autowired
private UserService userService;

Expand Down

0 comments on commit b2d171c

Please sign in to comment.