package com.fjhx.controller.example; import com.fjhx.service.example.ExampleDetailsService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *
* 实例明细 前端控制器 *
* * @author ${author} * @since 2022-08-23 */ @RestController @RequestMapping("/exampleDetails") public class ExampleDetailsController { @Autowired private ExampleDetailsService exampleDetailsService; }