|
@@ -91,11 +91,16 @@ public class TbFcltInfrController {
|
|
|
return this.service.deleteByIds(ids);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "신규 ID 조회", response = NewIdLongDto.class)
|
|
|
+ @ApiOperation(value = "신규 시설물 관리번호 조회", response = NewIdLongDto.class)
|
|
|
@GetMapping(value = "/new-id", produces = {"application/json; charset=utf8"})
|
|
|
public NewIdLongDto getNewNmbr() {
|
|
|
return this.service.getNewNmbr();
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "신규 시설물 ID 조회", response = NewIdLongDto.class)
|
|
|
+ @GetMapping(value = "/fclt/new-id/{type}", produces = {"application/json; charset=utf8"})
|
|
|
+ public NewIdLongDto getNewFcltId(@PathVariable("type") String type) {
|
|
|
+ return this.service.getNewFcltId(type);
|
|
|
+ }
|
|
|
|
|
|
}
|