123456789101112131415161718192021222324 |
- 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;
- /**
- * <p>
- * 实例明细 前端控制器
- * </p>
- *
- * @author ${author}
- * @since 2022-08-23
- */
- @RestController
- @RequestMapping("/exampleDetails")
- public class ExampleDetailsController {
- @Autowired
- private ExampleDetailsService exampleDetailsService;
- }
|