package tech.aiflowy.ai.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import tech.aiflowy.ai.entity.AiSecondMenu; import tech.aiflowy.ai.service.AiSecondMenuService; import tech.aiflowy.common.web.controller.BaseCurdController; @RestController @RequestMapping("/api/v1/aiMenu/SecondMenu") public class AiSecondMenuController extends BaseCurdController { public AiSecondMenuController(AiSecondMenuService service) { super(service); } @Autowired AiSecondMenuService AiSecondMenuService; }