## mybatis-plus-join-solon-plugin
```xml
com.github.yulichang
mybatis-plus-join-solon-plugin
lastVersion
```
### mapper继承JoinBaseMapper
```java
import com.github.yulichang.base.MPJBaseMapper;
@Mapper
public interface UserMapper extends MPJBaseMapper {
}
```
### (可选)service继承JoinBaseService
```java
import com.github.yulichang.mybatisplusjoin.solon.plugin.base.JoinService;
public interface UserService extends JoinService {
}
```
### (可选)serviceImpl继承JoinBaseServiceImpl
```java
import com.github.yulichang.mybatisplusjoin.solon.plugin.base.JoinServiceImpl;
import org.noear.solon.annotation.Component;
@Component
public class UserServiceImpl extends JoinServiceImpl implements UserService {
}
```