Skip to content

Commit

Permalink
암호화키갱신 시, valid_end_dtm 파일포멧 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
swbyun committed May 28, 2024
1 parent 4ce4ef2 commit 7d57b9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ public ModelAndView keyManageRegReForm(@ModelAttribute("historyVO") HistoryVO hi
JSONObject jsrow = (JSONObject) rows01.get(i);
key.setBinUid(jsrow.get("binuid").toString());
key.setBinStatusCode(jsrow.get("binstatuscode").toString());
key.setValidEndDateTime(jsrow.get("validEndDateTime").toString());
key.setValidEndDateTime(jsrow.get("validEndDateTime").toString()+".999");
param2.add(key.toJSONString());
}
try{
Expand Down

0 comments on commit 7d57b9b

Please sign in to comment.