| | |
| | | |
| | | @ApiOperation(value = "历史版本可用性设定",notes = "8.31修改后使用") |
| | | @GetMapping("setpHistoryEnable") |
| | | public Response setpHistoryEnable( @RequestParam String parentCode, @RequestParam String customCode, @RequestParam int version,@RequestParam int enabled) { |
| | | return historyService.setpHistoryEnable(parentCode, customCode, version, enabled); |
| | | public Response setpHistoryEnable( @RequestParam String parentCode, @RequestParam String customCode, @RequestParam int version,@RequestParam int enabled,@RequestParam(required = false) String reason) { |
| | | return historyService.setpHistoryEnable(parentCode, customCode, version, enabled,reason); |
| | | } |
| | | @PostMapping("zipParse") |
| | | @ApiOperation(value = "zip解析",notes = "返回结果中,追加data3为对比结果,为key-value集合,key为diffList,addList,deleteList") |