| | |
| | | import org.springblade.core.mp.support.Condition; |
| | | import org.springblade.core.mp.support.Query; |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | } |
| | | |
| | | @PostMapping("update") |
| | | public R update(TbProjectDTO tbProjectDTO){ |
| | | public R update(@RequestBody TbProjectDTO tbProjectDTO){ |
| | | return R.status(tbProjectService.updateCustomize(tbProjectDTO)); |
| | | } |
| | | |