| | |
| | | public List<ContractSubjectMatter> export(ContractSubjectMatter contractSubjectMatter,Long[] ids) { |
| | | return contractSubjectMatterService.list(Wrappers.lambdaQuery(contractSubjectMatter).in(ArrayUtil.isNotEmpty(ids), ContractSubjectMatter::getId, ids)); |
| | | } |
| | | |
| | | /** |
| | | * 通过合同id查询标的物履约进度 |
| | | * @param id id |
| | | * @return R |
| | | */ |
| | | @GetMapping("/selectSubjectMatterProcess/{id}" ) |
| | | public R selectSubjectMatterProcess(@PathVariable("id" ) Long id) { |
| | | return contractSubjectMatterService.selectSubjectMatterProcess(id); |
| | | } |
| | | |
| | | /** |
| | | * 通过合同id查询标的物履约进度 |
| | | * @param contractId id |
| | | * @return R |
| | | */ |
| | | @GetMapping("/selectSubjectMatter/{contractId}" ) |
| | | public R selectSubjectMatter(@PathVariable("contractId" ) Long contractId) { |
| | | return contractSubjectMatterService.selectSubjectMatter(contractId); |
| | | } |
| | | } |