package cn.wisenergy.chnmuseum.party.service.impl; import cn.wisenergy.chnmuseum.party.mapper.TUserRoleMapper; import cn.wisenergy.chnmuseum.party.model.TUserRole; import cn.wisenergy.chnmuseum.party.service.TUserRoleService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import org.springframework.beans.factory.annotation.Autowired;
import javax.annotation.Resource; /**+
* <pre> * 用户角色关联 服务实现类 * </pre> * * @author Danny Lee * @since 2021-03-22 */ @Slf4j @Service public class TUserRoleServiceImpl extends ServiceImpl<TUserRoleMapper, TUserRole> implements TUserRoleService {
@Resource
private TUserRoleMapper tUserRoleMapper; }