|
|
@@ -1,14 +1,12 @@
|
|
|
package com.its.op.controller.its.rse;
|
|
|
|
|
|
import com.its.op.dto.its.rse.TbRseOffrSectTrafHsDto;
|
|
|
-import com.its.op.entity.its.rse.TbRseOffrSectTrafHsKey;
|
|
|
import com.its.op.service.its.rse.TbRseOffrSectTrafHsService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
-import org.springframework.web.bind.annotation.PathVariable;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
@@ -29,10 +27,4 @@ public class TbRseOffrSectTrafHsController {
|
|
|
return this.service.findAll();
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "RSE 제공구간 정보제공 이력 개별조회(TB_RSE_OFFR_SECT_TRAF_HS)", response = TbRseOffrSectTrafHsDto.class)
|
|
|
- @GetMapping(value = "/{id}", produces = {"application/json; charset=utf8"})
|
|
|
- public TbRseOffrSectTrafHsDto findById(@PathVariable final TbRseOffrSectTrafHsKey id) {
|
|
|
- return this.service.findById(id);
|
|
|
- }
|
|
|
-
|
|
|
}
|