Compare commits
No commits in common. "3aaa157dde0126bef43d2d9cee3620c890f2b18f" and "1393b01b069262f7d3f44a0c3a526513e17b6af7" have entirely different histories.
3aaa157dde
...
1393b01b06
|
|
@ -15,7 +15,6 @@ import lombok.RequiredArgsConstructor;
|
|||
import org.egovframe.rte.fdl.property.EgovPropertyService;
|
||||
import org.egovframe.rte.ptl.mvc.tags.ui.pagination.PaginationInfo;
|
||||
import org.springframework.http.MediaType;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
import org.springframework.security.core.annotation.AuthenticationPrincipal;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
|
|
@ -24,7 +23,6 @@ import org.springframework.web.bind.annotation.RestController;
|
|||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
|
|
@ -132,20 +130,4 @@ public class StandardCodeController extends BaseController {
|
|||
resultVO.setResult(resultMap);
|
||||
return resultVO;
|
||||
}
|
||||
|
||||
@Operation(
|
||||
summary = "건설기준코드 개정이력 조회",
|
||||
description = "건설기준코드 개정이력 조회",
|
||||
tags = {"StandardCodeController"}
|
||||
)
|
||||
@PostMapping("/testCodeList.do")
|
||||
public ResponseEntity<?> testCodeList(@RequestBody Integer groupseq){
|
||||
System.out.println(groupseq+"-------------------------------");
|
||||
|
||||
|
||||
return ResponseEntity.ok(standardCodeService.selectStandardCodeRevisionhistoryList(groupseq));
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -13,5 +13,4 @@ public interface StandardCodeMapper {
|
|||
|
||||
Integer selectStandardCodeListCnt(TnDocumentInfo tnDocumentInfo);
|
||||
|
||||
List<TnDocumentInfo> selectStandardCodeRevisionhistoryList(Integer groupseq);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,7 +34,4 @@ public class StandardCodeService {
|
|||
return standardCodeMapper.selectStandardCodeListCnt(tnDocumentInfo);
|
||||
}
|
||||
|
||||
public List<TnDocumentInfo> selectStandardCodeRevisionhistoryList(Integer groupseq) {
|
||||
return standardCodeMapper.selectStandardCodeRevisionhistoryList(groupseq);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -61,14 +61,4 @@
|
|||
</where>
|
||||
</sql>
|
||||
|
||||
|
||||
<select id="selectStandardCodeRevisionhistoryList" resultType="TnDocumentInfo">
|
||||
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%'
|
||||
and tdi.group_seq =#{groupseq}
|
||||
and tdi.use_yn = 'Y'
|
||||
order by tdi.kcsc_cd;
|
||||
</select>
|
||||
</mapper>
|
||||
Loading…
Reference in New Issue