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