This commit is contained in:
cwchen 2024-02-26 09:18:18 +08:00
parent fa26fa0ffc
commit 8acc07852a
1 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@ import com.securitycontrol.system.base.service.IRoleService;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
/**
* @authorcwchen
* @date2024-02-23-18:28
@ -14,6 +16,6 @@ import org.springframework.web.bind.annotation.RestController;
@RequestMapping("/sys/role/")
public class RoleController {
@RT
@Resource(name = "IRoleService")
private IRoleService service;
}