Compare commits

..

No commits in common. "b3fef8a79f42342f69fe04dd6d39b4df33effd3d" and "bea7d6e4d079535de5f9f8870234f584d64202f6" have entirely different histories.

2 changed files with 4 additions and 2 deletions

View File

@ -133,7 +133,7 @@ public class StandardCodeController extends BaseController {
description = "건설기준코드 개정이력 조회",
tags = {"StandardCodeController"}
)
@PostMapping("/codeListModal.do")
@PostMapping("/testCodeList.do")
public ResponseEntity<List<TnDocumentInfo>> testCodeList(@RequestBody Integer groupseq){
return ResponseEntity.ok(standardCodeService.selectStandardCodeRevisionhistoryList(groupseq));
}

View File

@ -63,7 +63,7 @@
<select id="selectStandardCodeRevisionhistoryList" resultType="TnDocumentInfo">
select tdi.aplcn_bgng_ymd,tdi.doc_file_grp_id,tdi.rvsn_file_grp_id from tn_document_info tdi, tn_document_group tdg
select tdi.aplcn_bgng_ymd,tdi.doc_file_grp_id from tn_document_info tdi, tn_document_group tdg
where 1 = 1
and tdi.group_seq = tdg.group_seq
and tdi.kcsc_cd like 'KDS%'
@ -109,5 +109,7 @@
a.group_seq
order by
a.kcsc_cd;
</select>
</mapper>