TUserRoleServiceImpl.java 778 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
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;

wzp's avatar
wzp committed
12 13 14
import javax.annotation.Resource;

/**+
15 16 17 18 19 20 21 22 23 24 25
 * <pre>
 * 用户角色关联 服务实现类
 * </pre>
 *
 * @author Danny Lee
 * @since 2021-03-22
 */
@Slf4j
@Service
public class TUserRoleServiceImpl extends ServiceImpl<TUserRoleMapper, TUserRole> implements TUserRoleService {

wzp's avatar
wzp committed
26
    @Resource
27 28 29
    private TUserRoleMapper tUserRoleMapper;

}