|
@@ -29,6 +29,12 @@ public class CodeTableController {
|
|
|
return this.cmmnClsfCdService.findAll();
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "대분류코드-전체조회(TB_CMMN_CLSF_CD)", response = TbCmmnClsfCdDto.class, responseContainer = "ArrayList")
|
|
|
+ @GetMapping(value = "/clsf-cd/list", produces = {"application/json; charset=utf8"})
|
|
|
+ public List<TbCmmnClsfCdDto> findAllCmmnClsfCdList() {
|
|
|
+ return this.cmmnClsfCdService.findAllList();
|
|
|
+ }
|
|
|
+
|
|
|
/* @ApiOperation(value = "대분류코드-개별조회(TB_CMMN_CLSF_CD)", response = CmmnClsfCdDto.CmmnClsfCdInfo.class)
|
|
|
@GetMapping(value = "/clsf-cd/{id}", produces = {"application/json; charset=utf8"})
|
|
|
public CmmnClsfCdDto.CmmnClsfCdInfo findByIdCmmnClsfCd(@PathVariable final String id) {
|