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

io.github.taills.common.security.controller.SecurityRoleController Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package io.github.taills.common.security.controller;

import io.github.taills.common.jpa.entity.SecurityRole;
import io.github.taills.common.jpa.service.SecurityRoleService;
import io.github.taills.common.controller.BaseController;
import io.github.taills.common.annotation.ApiResponseBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @ClassName UserController
 * @Description
 * @Author nil
 * @Date 2021/10/20 11:41 下午
 **/
@ApiResponseBody
@RestController
@RequestMapping("/security/role")
public class SecurityRoleController extends BaseController {
    public SecurityRoleController(SecurityRoleService service) {
        init(service);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy