| | |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | 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.RequestParam; |
| | | |
| | | import java.util.Collection; |
| | |
| | | * @param ids 对象英文名称 但是不能超过1000 |
| | | * @return 业务对象 |
| | | */ |
| | | @GetMapping(GET_BY_IDS) |
| | | R<List<RevisionRuleVO>> selectByIdCollection(List<String> ids); |
| | | @PostMapping(GET_BY_IDS) |
| | | R<List<RevisionRuleVO>> selectByIdCollection(@RequestBody List<String> ids); |
| | | |
| | | /** |
| | | * 批量根据主键获取版本规则 |