package com.backendsys.modules.app.user.controller; import com.backendsys.modules.app.user.service.AppUserService; import io.swagger.v3.oas.annotations.tags.Tag; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.RestController; @Validated @RestController @Tag(name = "APP用户管理") public class AppUserController { @Autowired private AppUserService appUserService; }