gasWellWatch/src/main/java/com/isu/gaswellwatch/service/impl/RoleMenuServiceImpl.java

16 lines
551 B
Java
Raw Normal View History

2024-10-30 10:34:26 +08:00
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<RoleMenuDao, RoleMenu> implements RoleMenuService {
}