提交代码

dev_xds
姜玉琦 2023-08-24 22:19:22 +08:00
parent e3e1c2fc2b
commit 7def0238af
1 changed files with 10 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import com.ruoyi.common.enums.BusinessType;
import com.yanzhu.jh.project.domain.SurProjectChecking;
import com.yanzhu.jh.project.service.ISurProjectCheckingService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
/**
@ -54,4 +55,13 @@ public class ProjectCheckingController extends BaseController {
return success(surProjectCheckingService.insertSurProjectChecking(surProjectChecking));
}
/**
*
*/
@Log(title = "举牌验收", businessType = BusinessType.DELETE)
@GetMapping("/remove")
public AjaxResult remove(@RequestParam Long id)
{
return toAjax(surProjectCheckingService.deleteSurProjectCheckingById(id));
}
}