All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yeskery.nut.extend.mybatisflex.ServiceImpl Maven / Gradle / Ivy

The newest version!
package com.yeskery.nut.extend.mybatisflex;

import com.mybatisflex.core.BaseMapper;
import com.mybatisflex.core.service.IService;
import com.yeskery.nut.annotation.bean.Autowired;
/**
 * Service默认实现类
 * @author Yeskery
 * 2023/7/24
 */
public class ServiceImpl, T> implements IService {

    /** Mapper对象 */
    @Autowired
    private M mapper;

    @Override
    public BaseMapper getMapper() {
        return mapper;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy