io.github.taills.common.security.controller.SecurityGroupController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-common Show documentation
Show all versions of spring-boot-common Show documentation
Taills's Spring Boot Project Common
package io.github.taills.common.security.controller;
import io.github.taills.common.controller.BaseController;
import io.github.taills.common.jpa.entity.SecurityGroup;
import io.github.taills.common.jpa.service.SecurityGroupService;
import io.github.taills.common.annotation.ApiResponseBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @ClassName AdminController
* @Description
* @Author nil
* @Date 2021/10/20 11:41 下午
**/
@RestController
@ApiResponseBody
@RequestMapping("/security/group")
public class SecurityGroupController extends BaseController {
public SecurityGroupController(SecurityGroupService service) {
init(service);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy