skyouc
2025-07-07 2a24c69b830d9dc97a8673f5f69418e9f95f3e1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.asrs.wms.system.service.impl;
 
import com.zy.asrs.wms.system.mapper.RoleMapper;
import com.zy.asrs.wms.system.entity.Role;
import com.zy.asrs.wms.system.service.RoleService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("roleService")
public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements RoleService {
 
    @Override
    public int removeByHostId(Long hostId) {
        return this.baseMapper.removeByHostId(hostId);
    }
}