删除无用文件
This commit is contained in:
parent
b7432cc0c5
commit
6f29019615
@ -1,33 +0,0 @@
|
||||
package com.example.springdemo.controller;
|
||||
|
||||
import com.example.springdemo.entities.Indent;
|
||||
import com.example.springdemo.service.IndentService;
|
||||
import jakarta.annotation.Resource;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/indent")
|
||||
public class IndentController {
|
||||
@Resource
|
||||
private IndentService indentService;
|
||||
|
||||
@PostMapping("/add")
|
||||
public Indent addIndent(@RequestBody Indent indent) {
|
||||
return indentService.addIndent(indent);
|
||||
}
|
||||
|
||||
@DeleteMapping("/delete/{id}")
|
||||
public void deleteIndent(@PathVariable Long id) {
|
||||
indentService.deleteIndentById(id);
|
||||
}
|
||||
|
||||
@PutMapping("/update")
|
||||
public Indent updateIndent(@RequestBody Indent indent) {
|
||||
return indentService.updateIndent(indent);
|
||||
}
|
||||
|
||||
@GetMapping("/find")
|
||||
public Iterable<Indent> getIndent() {
|
||||
return indentService.findAllIndents();
|
||||
}
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
package com.example.springdemo.service;
|
||||
|
||||
import com.example.springdemo.entities.Indent;
|
||||
|
||||
public interface IndentService {
|
||||
Indent addIndent(Indent indent);
|
||||
|
||||
void deleteIndentById(Long id);
|
||||
|
||||
Indent updateIndent(Indent indent);
|
||||
|
||||
Iterable<Indent> findAllIndents();
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
package com.example.springdemo.service;
|
||||
|
||||
import com.example.springdemo.dao.IndentRepository;
|
||||
import com.example.springdemo.entities.Indent;
|
||||
import jakarta.annotation.Resource;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
public class IndentServiceImpl implements IndentService{
|
||||
@Resource
|
||||
private IndentRepository indentRepository;
|
||||
|
||||
@Override
|
||||
public Indent addIndent(Indent indent) {
|
||||
return indentRepository.save(indent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteIndentById(Long id) {
|
||||
indentRepository.deleteById(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Indent updateIndent(Indent indent) {
|
||||
return indentRepository.save(indent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Iterable<Indent> findAllIndents() {
|
||||
return indentRepository.findAll();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user