kaiyu
2021-03-10 5097d13418e9a0bf605f5272f1b9e60fc62c80cb
screen-manage/src/main/java/com/moral/api/service/impl/ManageRoleServiceImpl.java
@@ -5,6 +5,9 @@
import com.moral.api.service.ManageRoleService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
import org.springframework.util.StringUtils;
import javax.annotation.Resource;
/**
 * <p>
@@ -17,4 +20,12 @@
@Service
public class ManageRoleServiceImpl extends ServiceImpl<ManageRoleMapper, ManageRole> implements ManageRoleService {
    @Resource
    ManageRoleMapper roleMapper;
    public ManageRole getManageRoleByAccountId(String accountId){
        if(StringUtils.isEmpty(accountId))
            return null;
        return null;
    }
}