|
@@ -1,6 +1,7 @@
|
|
|
package com.its.op.controller.its.facility;
|
|
package com.its.op.controller.its.facility;
|
|
|
|
|
|
|
|
import com.its.op.dto.its.common.NewIdLongDto;
|
|
import com.its.op.dto.its.common.NewIdLongDto;
|
|
|
|
|
+import com.its.op.dto.its.common.NewIdStringDto;
|
|
|
import com.its.op.dto.its.facility.FcltWorkStepDto;
|
|
import com.its.op.dto.its.facility.FcltWorkStepDto;
|
|
|
import com.its.op.dto.its.facility.TbFcltInfrDto;
|
|
import com.its.op.dto.its.facility.TbFcltInfrDto;
|
|
|
import com.its.op.dto.its.facility.UnRegisteredFcltInfrDto;
|
|
import com.its.op.dto.its.facility.UnRegisteredFcltInfrDto;
|
|
@@ -97,9 +98,9 @@ public class TbFcltInfrController {
|
|
|
return this.service.getNewNmbr();
|
|
return this.service.getNewNmbr();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- @ApiOperation(value = "신규 시설물 ID 조회", response = NewIdLongDto.class)
|
|
|
|
|
|
|
+ @ApiOperation(value = "신규 시설물 ID 조회", response = NewIdStringDto.class)
|
|
|
@GetMapping(value = "/fclt/new-id/{type}", produces = {"application/json; charset=utf8"})
|
|
@GetMapping(value = "/fclt/new-id/{type}", produces = {"application/json; charset=utf8"})
|
|
|
- public NewIdLongDto getNewFcltId(@PathVariable("type") String type) {
|
|
|
|
|
|
|
+ public NewIdStringDto getNewFcltId(@PathVariable("type") String type) {
|
|
|
return this.service.getNewFcltId(type);
|
|
return this.service.getNewFcltId(type);
|
|
|
}
|
|
}
|
|
|
|
|
|