package com.fdkankan.task.controller; import com.mybatisflex.core.paginate.Page; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.beans.factory.annotation.Autowired; import com.fdkankan.task.entity.TbScene3dNumNew; import com.fdkankan.task.service.TbScene3dNumNewService; import org.springframework.web.bind.annotation.RestController; import java.io.Serializable; import java.util.List; /** * 控制层。 * * @author Admin * @since 2023-12-01 */ @RestController @RequestMapping("/tbScene3dNumNew") public class TbScene3dNumNewController { @Autowired private TbScene3dNumNewService tbScene3dNumNewService; /** * 添加。 * * @param tbScene3dNumNew * @return {@code true} 添加成功,{@code false} 添加失败 */ @PostMapping("save") public boolean save(@RequestBody TbScene3dNumNew tbScene3dNumNew) { return tbScene3dNumNewService.save(tbScene3dNumNew); } /** * 根据主键删除。 * * @param id 主键 * @return {@code true} 删除成功,{@code false} 删除失败 */ @DeleteMapping("remove/{id}") public boolean remove(@PathVariable Serializable id) { return tbScene3dNumNewService.removeById(id); } /** * 根据主键更新。 * * @param tbScene3dNumNew * @return {@code true} 更新成功,{@code false} 更新失败 */ @PutMapping("update") public boolean update(@RequestBody TbScene3dNumNew tbScene3dNumNew) { return tbScene3dNumNewService.updateById(tbScene3dNumNew); } /** * 查询所有。 * * @return 所有数据 */ @GetMapping("list") public List list() { return tbScene3dNumNewService.list(); } /** * 根据主键获取详细信息。 * * @param id 主键 * @return 详情 */ @GetMapping("getInfo/{id}") public TbScene3dNumNew getInfo(@PathVariable Serializable id) { return tbScene3dNumNewService.getById(id); } /** * 分页查询。 * * @param page 分页对象 * @return 分页对象 */ @GetMapping("page") public Page page(Page page) { return tbScene3dNumNewService.page(page); } }