package com.isu.gaswellwatch.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.isu.gaswellwatch.dao.RoleMenuDao; import com.isu.gaswellwatch.entity.RoleMenu; import com.isu.gaswellwatch.service.RoleMenuService; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @Service("roleMenuService") @Transactional(rollbackFor = Exception.class) public class RoleMenuServiceImpl extends ServiceImpl implements RoleMenuService { }