| | |
| | | import org.springblade.core.tool.utils.BeanUtil; |
| | | import org.springframework.cglib.beans.BeanMap; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import springfox.documentation.annotations.ApiIgnore; |
| | | |
| | |
| | | * @return 业务对象 |
| | | */ |
| | | @Override |
| | | @GetMapping(GET_BY_IDS) |
| | | public R<List<RevisionRuleVO>> selectByIdCollection(List<String> ids) { |
| | | @PostMapping(GET_BY_IDS) |
| | | public R<List<RevisionRuleVO>> selectByIdCollection(@RequestBody List<String> ids) { |
| | | return R.data(service.listRevisionRuleByIdCollection(ids)); |
| | | } |
| | | |