com.github.houbb.privilege.test.service.UserService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of privilege-test Show documentation
Show all versions of privilege-test Show documentation
The test module for privilege
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;
}
}