All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.houbb.privilege.test.service.UserService Maven / Gradle / Ivy

There is a newer version: 0.0.8
Show newest version
package com.github.houbb.privilege.test.service;

import com.github.houbb.privilege.api.annotation.PrivilegeAcquire;
import org.springframework.stereotype.Service;

/**
 * @author binbin.hou
 * @since 0.0.4
 */
@Service
public class UserService {

    public String queryInfo() {
        return "result";
    }

    @PrivilegeAcquire("1001")
    public boolean removeInfo() {
        return true;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy