# WARNING: head commit changed in the meantime
Merge branch 'master' of http://yongjoon.cho@vcs.iten.co.kr:9999/itnAdmin/fairnet gw 연동_수동관리 추가
@ -0,0 +1,15 @@
|
||||
package kcc.com.uss.ion.gw.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface GWManualService {
|
||||
|
||||
public List<GWManualVO> selectHolidayList(GWManualVO gWManualVO) throws Exception;
|
||||
|
||||
public void deleteHoliday(GWManualVO gWManualVO) throws Exception;
|
||||
|
||||
public void insertHoliday(GWManualVO gWManualVO) throws Exception;
|
||||
|
||||
public int selectHolidayCnt(GWManualVO gWManualVO) throws Exception;
|
||||
|
||||
}
|
||||
78
src/main/java/kcc/com/uss/ion/gw/service/GWManualVO.java
Normal file
@ -0,0 +1,78 @@
|
||||
package kcc.com.uss.ion.gw.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import kcc.com.cmm.ComDefaultVO;
|
||||
|
||||
public class GWManualVO extends ComDefaultVO implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 5641887401063483713L;
|
||||
|
||||
public String locdate = ""; //날짜
|
||||
public String dateKind = ""; //날짜종류
|
||||
public String dateName = ""; //날짜명
|
||||
public String holidayYn = ""; //공휴일 여부
|
||||
public String delYn = ""; //삭제여부
|
||||
public String regDt = ""; //등록일
|
||||
public String updDt = ""; //변경일
|
||||
|
||||
public String sdt = ""; //기간 계산 - 시작일
|
||||
public String edt = ""; //기간 계산 - 종료일
|
||||
|
||||
public String getLocdate() {
|
||||
return locdate;
|
||||
}
|
||||
public void setLocdate(String locdate) {
|
||||
this.locdate = locdate;
|
||||
}
|
||||
public String getDateKind() {
|
||||
return dateKind;
|
||||
}
|
||||
public void setDateKind(String dateKind) {
|
||||
this.dateKind = dateKind;
|
||||
}
|
||||
public String getDateName() {
|
||||
return dateName;
|
||||
}
|
||||
public void setDateName(String dateName) {
|
||||
this.dateName = dateName;
|
||||
}
|
||||
public String getHolidayYn() {
|
||||
return holidayYn;
|
||||
}
|
||||
public void setHolidayYn(String holidayYn) {
|
||||
this.holidayYn = holidayYn;
|
||||
}
|
||||
public String getDelYn() {
|
||||
return delYn;
|
||||
}
|
||||
public void setDelYn(String delYn) {
|
||||
this.delYn = delYn;
|
||||
}
|
||||
public String getRegDt() {
|
||||
return regDt;
|
||||
}
|
||||
public void setRegDt(String regDt) {
|
||||
this.regDt = regDt;
|
||||
}
|
||||
public String getUpdDt() {
|
||||
return updDt;
|
||||
}
|
||||
public void setUpdDt(String updDt) {
|
||||
this.updDt = updDt;
|
||||
}
|
||||
public String getSdt() {
|
||||
return sdt;
|
||||
}
|
||||
public void setSdt(String sdt) {
|
||||
this.sdt = sdt;
|
||||
}
|
||||
public String getEdt() {
|
||||
return edt;
|
||||
}
|
||||
public void setEdt(String edt) {
|
||||
this.edt = edt;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@ -0,0 +1,28 @@
|
||||
package kcc.com.uss.ion.gw.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import egovframework.rte.psl.dataaccess.EgovAbstractDAO;
|
||||
import kcc.com.uss.ion.gw.service.GWManualVO;
|
||||
|
||||
@Repository("gWManualDAO")
|
||||
public class GWManualDAO extends EgovAbstractDAO {
|
||||
public List<GWManualVO> selectHolidayList(GWManualVO gWManualVO) throws Exception {
|
||||
return (List<GWManualVO>) list("gWManualDAO.selectHolidayList", gWManualVO);
|
||||
}
|
||||
|
||||
public void deleteHoliday(GWManualVO gWManualVO) throws Exception {
|
||||
update("gWManualDAO.deleteHoliday", gWManualVO);
|
||||
}
|
||||
|
||||
public void insertHoliday(GWManualVO gWManualVO) throws Exception {
|
||||
update("gWManualDAO.insertHoliday", gWManualVO);
|
||||
}
|
||||
|
||||
public int selectHolidayCnt(GWManualVO gWManualVO) throws Exception {
|
||||
return (Integer) select("gWManualDAO.selectHolidayCnt", gWManualVO);
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,38 @@
|
||||
package kcc.com.uss.ion.gw.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl;
|
||||
import kcc.com.uss.ion.gw.service.GWManualService;
|
||||
import kcc.com.uss.ion.gw.service.GWManualVO;
|
||||
|
||||
@Service("gWManualService")
|
||||
public class GWManualServiceImpl extends EgovAbstractServiceImpl implements GWManualService{
|
||||
|
||||
@Resource(name="gWManualDAO")
|
||||
private GWManualDAO gWManualDAO;
|
||||
|
||||
@Override
|
||||
public List<GWManualVO> selectHolidayList(GWManualVO gWManualVO) throws Exception {
|
||||
return gWManualDAO.selectHolidayList(gWManualVO);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteHoliday(GWManualVO gWManualVO) throws Exception {
|
||||
gWManualDAO.deleteHoliday(gWManualVO);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void insertHoliday(GWManualVO gWManualVO) throws Exception {
|
||||
gWManualDAO.insertHoliday(gWManualVO);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int selectHolidayCnt(GWManualVO gWManualVO) throws Exception {
|
||||
return gWManualDAO.selectHolidayCnt(gWManualVO);
|
||||
}
|
||||
}
|
||||
167
src/main/java/kcc/com/uss/ion/gw/web/GWManualController.java
Normal file
@ -0,0 +1,167 @@
|
||||
package kcc.com.uss.ion.gw.web;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.StringReader;
|
||||
import java.net.HttpURLConnection;
|
||||
import java.net.URL;
|
||||
import java.net.URLEncoder;
|
||||
import java.time.LocalDate;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import javax.servlet.http.HttpSession;
|
||||
import javax.xml.parsers.DocumentBuilder;
|
||||
import javax.xml.parsers.DocumentBuilderFactory;
|
||||
|
||||
import org.springframework.http.HttpStatus;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
import org.springframework.web.bind.annotation.ModelAttribute;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
|
||||
import org.w3c.dom.Document;
|
||||
import org.w3c.dom.Element;
|
||||
import org.w3c.dom.NodeList;
|
||||
import org.xml.sax.InputSource;
|
||||
|
||||
import kcc.com.uss.ion.hld.service.HolidayService;
|
||||
import kcc.com.uss.ion.hld.service.HolidayVO;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @author User
|
||||
* gw api 연동이 실패한 경우 관리자가 수동으로 처리 하는 controller
|
||||
*/
|
||||
|
||||
@Controller
|
||||
public class GWManualController {
|
||||
|
||||
@Resource(name = "holidayService")
|
||||
private HolidayService holidayService;
|
||||
|
||||
@RequestMapping(value="/uss/gwmanual/selectGWManualList.do")
|
||||
public String selectHolidayList(@ModelAttribute("holidayVO") HolidayVO holidayVO,ModelMap model, HttpSession session)throws Exception{
|
||||
//현재년도 가져오기
|
||||
LocalDate now = LocalDate.now();
|
||||
int nowYear = now.getYear();
|
||||
String nowYearStr = String.valueOf(nowYear);
|
||||
model.addAttribute("nowYearStr", nowYearStr);
|
||||
|
||||
if("".equals(holidayVO.getSearchYear())) {
|
||||
holidayVO.setSearchYear(nowYearStr);
|
||||
}
|
||||
List<HolidayVO> holidayList = holidayService.selectHolidayList(holidayVO);
|
||||
model.addAttribute("holidayList", holidayList);
|
||||
return "/com/gwmanual/gwManualList";
|
||||
}
|
||||
|
||||
@RequestMapping(value="/uss/holiday/deleteHoliday.do")
|
||||
public String deleteHoliday(@ModelAttribute("holidayVO") HolidayVO holidayVO, RedirectAttributes redirectAttributes)throws Exception{
|
||||
holidayService.deleteHoliday(holidayVO);
|
||||
redirectAttributes.addAttribute("searchYear", holidayVO.getSearchYear());
|
||||
return "redirect:/uss/holiday/selectHolidayList.do";
|
||||
}
|
||||
@RequestMapping(value="/uss/holiday/insertViewHoliday.do")
|
||||
public String insertViewHoliday(@ModelAttribute("holidayVO") HolidayVO holidayVO)throws Exception{
|
||||
|
||||
return "/com/holiday/holidayInsert";
|
||||
}
|
||||
|
||||
@RequestMapping(value="/uss/holiday/insertHoliday.do")
|
||||
public String insertHoliday(@ModelAttribute("holidayVO") HolidayVO holidayVO, RedirectAttributes redirectAttributes)throws Exception{
|
||||
holidayService.insertHoliday(holidayVO);
|
||||
return "redirect:/uss/holiday/selectHolidayList.do";
|
||||
}
|
||||
|
||||
@RequestMapping(value="/uss/holiday/insertHolidayAPI.do")
|
||||
public String insertHolidayAPI(@ModelAttribute("holidayVO") HolidayVO holidayVO, RedirectAttributes redirectAttributes)throws Exception{
|
||||
StringBuilder urlBuilder = new StringBuilder("http://apis.data.go.kr/B090041/openapi/service/SpcdeInfoService/getRestDeInfo"); /*URL*/
|
||||
urlBuilder.append("?" + URLEncoder.encode("serviceKey","UTF-8") + "=qC21K3oaxizQNSTba2aKLXQY8PdMn8N0GPYtjhnOUETJIlvcZ4bmeyJz2eyBQ9hCe%2B9v7A3ZINAKTWaofuR%2Fjw%3D%3D"); /*Service Key*/
|
||||
urlBuilder.append("&" + URLEncoder.encode("numOfRows","UTF-8") + "=" + URLEncoder.encode("100", "UTF-8")); /*한 페이지 결과 수*/
|
||||
urlBuilder.append("&" + URLEncoder.encode("solYear","UTF-8") + "=" + URLEncoder.encode(holidayVO.getSearchYear(), "UTF-8")); /*연*/
|
||||
URL url = new URL(urlBuilder.toString());
|
||||
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
|
||||
conn.setRequestMethod("GET");
|
||||
conn.setRequestProperty("Content-type", "application/json");
|
||||
System.out.println("Response code: " + conn.getResponseCode());
|
||||
BufferedReader rd;
|
||||
if(conn.getResponseCode() >= 200 && conn.getResponseCode() <= 300) {
|
||||
rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
|
||||
} else {
|
||||
rd = new BufferedReader(new InputStreamReader(conn.getErrorStream()));
|
||||
}
|
||||
StringBuilder sb = new StringBuilder();
|
||||
String line;
|
||||
while ((line = rd.readLine()) != null) {
|
||||
sb.append(line);
|
||||
}
|
||||
rd.close();
|
||||
conn.disconnect();
|
||||
|
||||
/*파싱 후 insert 반복*/
|
||||
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
|
||||
DocumentBuilder builder = factory.newDocumentBuilder();
|
||||
InputSource is = new InputSource(new StringReader(sb.toString()));
|
||||
Document doc = builder.parse(is);
|
||||
|
||||
NodeList itemList = doc.getElementsByTagName("item");
|
||||
List<HolidayVO> holidayList = new ArrayList<>();
|
||||
|
||||
for(int i=0; i <itemList.getLength(); i++ ) {
|
||||
Element item = (Element) itemList.item(i);
|
||||
HolidayVO holidayItem = new HolidayVO();
|
||||
|
||||
holidayItem.setLocdate(item.getElementsByTagName("locdate").item(0).getTextContent());
|
||||
holidayItem.setDateKind(item.getElementsByTagName("dateKind").item(0).getTextContent().replace("0",""));
|
||||
holidayItem.setDateName(item.getElementsByTagName("dateName").item(0).getTextContent());
|
||||
holidayItem.setHolidayYn(item.getElementsByTagName("isHoliday").item(0).getTextContent());
|
||||
|
||||
holidayList.add(holidayItem);
|
||||
}
|
||||
for (HolidayVO holiday : holidayList) {
|
||||
try {
|
||||
holidayService.insertHoliday(holiday);
|
||||
}catch(Exception ex) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return "redirect:/uss/holiday/selectHolidayList.do";
|
||||
}
|
||||
|
||||
@RequestMapping(value="/uss/holiday/returnHolidayAjax.do")
|
||||
public ResponseEntity<Integer> returnHolidayAjax(@RequestBody HolidayVO holidayVO, RedirectAttributes redirectAttributes)throws Exception{
|
||||
String std = holidayVO.getSdt();
|
||||
String etd = holidayVO.getEdt();
|
||||
|
||||
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
|
||||
LocalDate startDate = LocalDate.parse(std, formatter);
|
||||
LocalDate endDate = LocalDate.parse(etd, formatter);
|
||||
|
||||
//시작일에 하루 더해서 set 해주기 - 시작일이 공휴일 또는 주말인 경우 대비ㄱ
|
||||
startDate = startDate.plusDays(1);
|
||||
std = startDate.format(formatter);
|
||||
holidayVO.setSdt(std);
|
||||
|
||||
//공휴일 수
|
||||
int hldCnt = holidayService.selectHolidayCnt(holidayVO);
|
||||
|
||||
int workCnt = 0;
|
||||
//주말, 공휴일 뺀 기간
|
||||
for (LocalDate date = startDate; !date.isAfter(endDate); date = date.plusDays(1)) {
|
||||
// 주말이 아닌 경우에만 근무일 수 증가
|
||||
if (date.getDayOfWeek().getValue() != 6 && date.getDayOfWeek().getValue() != 7) {
|
||||
workCnt++;
|
||||
}
|
||||
}
|
||||
workCnt = workCnt - hldCnt;
|
||||
return new ResponseEntity<Integer>(workCnt, HttpStatus.OK);
|
||||
}
|
||||
}
|
||||
@ -1364,6 +1364,226 @@ public class GwBaseController {
|
||||
|
||||
|
||||
|
||||
GwApi testApi = new GwApi();
|
||||
|
||||
if ("1".equals(v_ret)) { //처리 실패한 경우
|
||||
testApi.setResultCode("FAIL");
|
||||
testApi.setResultMessage("실패하였습니다");
|
||||
|
||||
//testApi.setResultCode("SUCCESS");
|
||||
//testApi.setResultMessage("성공하였습니다");
|
||||
}else {
|
||||
testApi.setResultCode("SUCCESS");
|
||||
testApi.setResultMessage("성공하였습니다");
|
||||
}
|
||||
|
||||
|
||||
return testApi;
|
||||
|
||||
}
|
||||
|
||||
//doc id 변경
|
||||
@RequestMapping(value = {"/web/ChangeHistoryDocId.do"})
|
||||
public GwApi ChangeHistoryDocId(HttpServletRequest request,
|
||||
HttpServletResponse response,
|
||||
HttpSession session,
|
||||
//Map<String, Object> map,
|
||||
@RequestParam Map<String, Object> map
|
||||
//@RequestBody Map<String, Object> map
|
||||
){
|
||||
|
||||
String v_ret = "0";
|
||||
|
||||
try {
|
||||
|
||||
System.out.println("request.getParameter(\"processId\")="+map.get("processId"));
|
||||
System.out.println("request.getParameter(\"approKey\")="+map.get("approKey"));
|
||||
System.out.println("request.getParameter(\"docId\")="+map.get("docId"));
|
||||
|
||||
//10-임시저장
|
||||
//20-상신
|
||||
/*
|
||||
* request.getParameter("processId")=5402000000
|
||||
request.getParameter("approKey")=H20241129030909
|
||||
request.getParameter("docId")=331
|
||||
request.getParameter("docSts")=20
|
||||
request.getParameter("userId")=test04
|
||||
* */
|
||||
System.out.println("request.getParameter(\"docSts\")="+map.get("docSts"));
|
||||
System.out.println("request.getParameter(\"userId\")="+map.get("userId"));
|
||||
|
||||
System.out.println("request.getParameter(\"approKey\")="+request.getParameter("approKey"));
|
||||
System.out.println("request.getParameter(\"docId\")="+request.getParameter("docId"));
|
||||
System.out.println("request.getParameter(\"docSts\")="+request.getParameter("docSts"));
|
||||
|
||||
|
||||
Enumeration params1 = request.getParameterNames();
|
||||
System.out.println("----------------------------");
|
||||
while (params1.hasMoreElements()){
|
||||
String name = (String)params1.nextElement();
|
||||
System.out.println(name + " : " +request.getParameter(name));
|
||||
}
|
||||
System.out.println("----------------------------");
|
||||
|
||||
Enumeration params2 = session.getAttributeNames();
|
||||
System.out.println("----------------------------");
|
||||
while (params2.hasMoreElements()){
|
||||
String name = (String)params2.nextElement();
|
||||
System.out.println(name + " : " +session.getAttribute(name));
|
||||
}
|
||||
System.out.println("----------------------------");
|
||||
|
||||
System.out.println("request.getParameter(\"processId\")="+request.getParameter("processId"));
|
||||
System.out.println("request.getParameter(\"approKey\")="+request.getParameter("approKey"));
|
||||
System.out.println("request.getParameter(\"docId\")="+request.getParameter("docId"));
|
||||
System.out.println("request.getParameter(\"docSts\")="+request.getParameter("docSts"));
|
||||
System.out.println("request.getParameter(\"userId\")="+request.getParameter("userId"));
|
||||
System.out.println("request.getParameter(\"formId\")="+request.getParameter("formId"));
|
||||
System.out.println("request.getParameter(\"docTitle\")="+request.getParameter("docTitle"));
|
||||
|
||||
|
||||
EgovMap params;
|
||||
|
||||
try {
|
||||
//request.setCharacterEncoding("UTF-8");
|
||||
//ModelAndView mav = new ModelAndView();
|
||||
//ModelAndView mavjson = new ModelAndView(new JSONView());
|
||||
|
||||
|
||||
|
||||
}catch(Exception ex) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
|
||||
//String tempDir = ApplicationProperty.get("url.referrer");
|
||||
params = JSPUtil.makeRequestParams(request, session, true);
|
||||
|
||||
String p_approKey = request.getParameter("approKey"); //하도2024-0540_H20241129030909_undefined_seqNo
|
||||
String p_docId = request.getParameter("docId"); // 12341234
|
||||
String p_docSts = request.getParameter("docSts"); // $("#callbackFrm #docStsTmp").val(p_type);
|
||||
String p_caseNo = request.getParameter("caseNo"); // $("#callbackFrm #caseNoTmp").val('manu');
|
||||
String p_seqNo = "";
|
||||
|
||||
List<?> p_caseNoList = null;
|
||||
String[] s_arr = p_approKey.split("_");
|
||||
|
||||
p_caseNo = s_arr[0];
|
||||
p_seqNo = s_arr[3];
|
||||
|
||||
params.put("seqNo", p_seqNo);
|
||||
params.put("caseNo", p_caseNo);
|
||||
params.put("docId", p_docId);
|
||||
|
||||
params.put("sql", "nanumSanctnhistoryCallbackIns");
|
||||
params.put("sql", "nanumSanctnhistoryCallbackIns20241209");
|
||||
params.put("sql", "nanumRetrunHisUpdateDocId");
|
||||
bservice.insert(params);
|
||||
|
||||
/*
|
||||
|
||||
//수동 또는 자동의 전달 체크
|
||||
if ("manu".equals(p_caseNo)) { //수동 처리인 경우 manu가 전달
|
||||
|
||||
|
||||
String[] s_Arr = params.get("approKey").toString().split("_");
|
||||
System.out.println("p_approKey");
|
||||
System.out.println(p_approKey);
|
||||
System.out.println(params.get("approKey").toString());
|
||||
System.out.println(s_Arr[0]);
|
||||
System.out.println(s_Arr[1]);
|
||||
params.put("caseNo", s_Arr[0]); //사건 정보
|
||||
params.put("docID", s_Arr[1]); //문서 정보
|
||||
|
||||
|
||||
|
||||
System.out.println(p_approKey);
|
||||
System.out.println(p_docId);
|
||||
System.out.println(p_docSts);
|
||||
|
||||
|
||||
}else { //자동으로 g/w에서 전달된 데이터 값 처리
|
||||
p_approKey = map.get("approKey").toString();
|
||||
params.put("docID", p_approKey); //문서 정보
|
||||
|
||||
p_docSts = map.get("docSts").toString();
|
||||
|
||||
if ("10".equals(p_docSts)) { //임시저장(상신취소)
|
||||
p_docSts = "T";
|
||||
}else if ("20".equals(p_docSts)) { //상신
|
||||
p_docSts = "P";
|
||||
}else if ("90".equals(p_docSts)) { //승인(종결/결재) - 90
|
||||
p_docSts = "A";
|
||||
}else if ("100".equals(p_docSts)) { //반려
|
||||
p_docSts = "R";
|
||||
}else if ("999".equals(p_docSts)) { //삭제
|
||||
p_docSts = "D";
|
||||
}
|
||||
|
||||
//10-임시저장
|
||||
//20-상신
|
||||
|
||||
|
||||
|
||||
//step1.docSts를 D/P/A 등으로 변경
|
||||
//step2.approKey로 사건 리스트를 가져온다.
|
||||
//params.put("docId", "0400000000"); //사건진행상태
|
||||
params.put("sql", "nanumSanctnhistorySelAll"); //사건 정보
|
||||
params.put("dataList", JSPUtil.fixNull(bservice.list(params)));
|
||||
|
||||
p_caseNoList = (List)params.get("dataList");
|
||||
|
||||
}
|
||||
|
||||
|
||||
if ("D".equals(p_docSts)) { //수동 전달의 삭제코드 확인 필요-반려
|
||||
//수동 삭제는 여기서 해당 데이터를 삭제한다.
|
||||
params.put("status", "deleted"); //결과값
|
||||
|
||||
}else if ("P".equals(p_docSts)) { //상신
|
||||
params.put("status", "accepted"); //결과값
|
||||
|
||||
}else if ("A".equals(p_docSts)) { //승인-종결
|
||||
params.put("status", "processed"); //결과값
|
||||
|
||||
}else if ("T".equals(p_docSts)) { //임시저장-상신취소
|
||||
params.put("status", "updated"); //결과값
|
||||
|
||||
}else if ("R".equals(p_docSts)) { //반려 - 데이터 삭제처리한다.
|
||||
params.put("status", "rejected"); //결과값
|
||||
|
||||
}else {
|
||||
params.put("status", p_docSts); //결과값
|
||||
}
|
||||
|
||||
if ("manu".equals(p_caseNo)) { //수동 처리인 경우 manu가 전달
|
||||
v_ret = this.nanumOld(params, p_caseNo);
|
||||
}else {//여러 사건 처리 가능
|
||||
//step2.사건리스트를 가져완서 for를 돌린다.
|
||||
for (Object key : p_caseNoList) {
|
||||
EgovMap n_em = (EgovMap)key;
|
||||
|
||||
params.put(
|
||||
"caseNo",
|
||||
n_em.get("caseNo").toString()
|
||||
); //사건진행상태
|
||||
|
||||
v_ret = this.nanumOld(params, p_caseNo);
|
||||
|
||||
}
|
||||
//params.put("caseNo", s_Arr[0]); //사건 정보
|
||||
//v_ret = this.nanumOld(params, p_caseNo);
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
|
||||
}catch(Exception ex) {
|
||||
ex.printStackTrace();
|
||||
v_ret = "1";
|
||||
}
|
||||
|
||||
|
||||
|
||||
GwApi testApi = new GwApi();
|
||||
|
||||
if ("1".equals(v_ret)) { //처리 실패한 경우
|
||||
|
||||
@ -1274,6 +1274,14 @@
|
||||
AND DOC_ID = #{docId}
|
||||
</delete>
|
||||
|
||||
<!-- C_SANCTNHISTORY 데이터 변경 manual-->
|
||||
<delete id="nanumRetrunHisUpdateDocId" parameterType="egovMap">
|
||||
UPDATE C_SANCTNHISTORY
|
||||
SET DOC_ID = #{docId}
|
||||
WHERE CASE_NO = #{caseNo}
|
||||
AND SEQ_NO = #{seqNo}
|
||||
</delete>
|
||||
|
||||
|
||||
<!-- 협의회 회의안건 상정, 희외개최 통보 결과값 -->
|
||||
<select id="nanumSanctnhistoryResult" parameterType="egovMap" resultType="egovMap">
|
||||
|
||||
|
Before Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1 +0,0 @@
|
||||
{"count":3,"endReport":true,"error":false}
|
||||
@ -1 +0,0 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C1c9249c5e3584df3b0c2defe0e35c72eac197cb1a95843a48dc8eb57728a204b",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C1c9249c5e3584df3b0c2defe0e35c72e8319e0e3760a475ba155e91b4034e614",}
|
||||
@ -1 +0,0 @@
|
||||
end
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 5.6 KiB |
@ -1 +0,0 @@
|
||||
{"count":3,"endReport":true,"error":false}
|
||||
@ -1 +0,0 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C1cdf83a9d7514c60a2c9d477927ed86a71e5642316fa46e6800624ba120bbd22",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C1cdf83a9d7514c60a2c9d477927ed86a956f6fe936bd4803bd0f108db5608192",}
|
||||
@ -1 +0,0 @@
|
||||
end
|
||||
|
Before Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1 +0,0 @@
|
||||
{"count":3,"endReport":true,"error":false}
|
||||
@ -1 +0,0 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C50a016064b9f42c89ae318942b5b29739771785c0937496faffa776c1759d33e",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C50a016064b9f42c89ae318942b5b29734435fc01937b4388a6fff6cc611f52bc",}
|
||||
@ -1 +0,0 @@
|
||||
end
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 5.6 KiB |
@ -1 +1 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C07c4bbcd7fce4e6a9e4eca7a2b41f1893b6c10036a0c46318ac24b3e22030b13",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C07c4bbcd7fce4e6a9e4eca7a2b41f1896d673abad9664146b2ab4f11697cd304",}
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C6f9bca587bf84391a5dd7bb7042cc5f60e0d7cdad28a4203a34083de32825064",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C6f9bca587bf84391a5dd7bb7042cc5f685d52a5f01a24e57943932041a007283",}
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 5.6 KiB |
@ -1 +0,0 @@
|
||||
{"count":3,"endReport":true,"error":false}
|
||||
@ -1 +0,0 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C711c1130285e4c39bd928798b22c36254032050acfe14cd6bc461ac4cf2cfd20",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C711c1130285e4c39bd928798b22c362570eedb354e414e3da6e4bed2ba149f1b",}
|
||||
@ -1 +0,0 @@
|
||||
end
|
||||
|
Before Width: | Height: | Size: 5.6 KiB |
@ -1 +0,0 @@
|
||||
{"count":1,"endReport":true,"error":false}
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1 +0,0 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2970,2100,1,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[1,16777215,0,0,0,16777215,0],[0,14211288,0,16777215,0,16777215,0],[1,14211288,0,16777215,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,18,false,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[1],"i":1,"j":[0,34,68,102,136,170,204,238,272,306,340,374,408,442,476,510,544,578,612,646,680,714,748,782,816,850,884,918,952,986,1020,1054,1088,1122,1156,1190,1224,1258,1292,1326,1360,1394,1428,1462,1496,1530,1564,1598,1632,1666,1700,1734,1768,1802,1836,1870,1904,1938,1972,2006,2040,2074,2108,2142,2176,2210,2244,2278,2312,2346,2380,2414,2448,2510,2569,2641,2711,2764,2817,2870],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,34,68,102,136,170,204,238,272,306,340,374,408,442,476,510,544,578,612,646,680,714,748,782,816,850,884,918,952,986,1020,1054,1088,1122,1156,1190,1224,1258,1292,1326,1360,1394,1428,1462,1496,1530,1564,1598,1632,1666,1700,1734,1768,1802,1836,1870,1904,1938,1972,2006,2040,2074,2108,2142,2176,2210,2244,2278,2312,2346,2380,2414,2448,2510,2569,2641,2711,2764,2817,2870]}],"p":[false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C95bd439af48d418a848f1a7b704e984bde6a3f2b5382475db230d6add9c701ab",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C95bd439af48d418a848f1a7b704e984b75429cdc52b24d238ec3802d6bc47eeb",}
|
||||
@ -1 +0,0 @@
|
||||
end
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 5.6 KiB |
@ -1 +0,0 @@
|
||||
{"count":3,"endReport":true,"error":false}
|
||||
@ -1 +0,0 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C9b0cabc101884cd7952bc90d9daed0f5479a0ff3814141938478901ef8d94215",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5C9b0cabc101884cd7952bc90d9daed0f5761295e05f4a4de58f4913aebcbca2fe",}
|
||||
@ -1 +0,0 @@
|
||||
end
|
||||
|
Before Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1 +0,0 @@
|
||||
{"count":3,"endReport":true,"error":false}
|
||||
@ -1 +0,0 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Cbf028a9d18f14470ac240dcc164c94096ccf361d827a4ec0ad0edb8b0856ae70",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Cbf028a9d18f14470ac240dcc164c9409440b84905a604d27ba2ac35c34ebb169",}
|
||||
@ -1 +0,0 @@
|
||||
end
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1 +0,0 @@
|
||||
{"count":3,"endReport":true,"error":false}
|
||||
|
Before Width: | Height: | Size: 5.6 KiB |
@ -1 +0,0 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Cc733b2948c8447168b404457778e2a661b4b546c6f6d463dba09fe1d041f6055",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Cc733b2948c8447168b404457778e2a66dcaae9d5561745deb7db7399a4cd2867",}
|
||||
@ -1 +0,0 @@
|
||||
end
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 5.6 KiB |
@ -1 +0,0 @@
|
||||
{"count":3,"endReport":true,"error":false}
|
||||
@ -1 +0,0 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Cca2ae9ac043442ca964143ba053ab2855ffab380327140a1af3cb2ed7864300f",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Cca2ae9ac043442ca964143ba053ab2857820a3cb16cd4063b41ec8a2b0e0a15d",}
|
||||
@ -1 +0,0 @@
|
||||
end
|
||||
|
Before Width: | Height: | Size: 5.6 KiB |
@ -1 +0,0 @@
|
||||
{"count":3,"endReport":true,"error":false}
|
||||
@ -1 +0,0 @@
|
||||
{"a":"1.0.0.71","b":"","c":"","d":"","e":"","f":"","g":{"a":[[1,2100,2970,0,50,50,50,50,1,0]],"b":[],"c":[[1,16777215,0,0,0,16777215,16777215],[0,14545387,0,16777215,0,16777215,0],[1,16777215,0,0,0,16777215,0],[0,14545387,0,0,0,16777215,0],[0,16777215,0,0,0,16777215,0]],"d":[[0,0,0],[1,75,0],[0,0,0],[0,0,0]],"e":[[8,9,true,false,false,false,0,1,-1,1,-1,8],[8,14,true,false,false,false,0,1,-1,1,-1,8],[8,10,false,false,false,false,0,1,-1,1,-1,8],[8,18,true,false,false,false,0,1,-1,1,-1,8],[8,8,false,false,false,false,0,1,-1,1,-1,8],[8,9,false,false,false,false,0,1,-1,1,-1,8]],"f":[[1,1,true,1,-1.0,0.0,1,"",0],[0,1,true,1,0.0,0.0,1,"",0],[2,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"",0],[1,1,true,1,0.0,0.0,1,"%23%2C%23%230",0],[0,1,true,1,0.0,3.0,1,"",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%230",0],[1,1,true,1,-1.0,0.0,1,"%23%2C%23%23%23%2C%2C_-",0]],"g":[[false,"B","I","B","S","C","O","R","P","O","BR"]],"h":[[0,0,0,0]],"i":[[true,true,true,true,true,true,true,true,true,true,true,true]],"j":[],"k":["%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95","NanumBarunGothic","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+Light","NanumBarunGothic+Light","%EB%82%98%EB%88%94%EB%B0%94%EB%A5%B8%EA%B3%A0%EB%94%95+UltraLight","NanumBarunGothic+UltraLight","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95+ExtraBold","NanumGothicExtraBold","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95","NanumGothic","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9","NanumGothicCoding","%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95%EC%BD%94%EB%94%A9-Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0","NanumMyeongjo","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+Bold","%EB%82%98%EB%88%94%EB%AA%85%EC%A1%B0+ExtraBold","NanumMyeongjoExtraBold"]},"h":[3,3,3],"i":3,"j":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000],"k":false,"l":[],"m":"","n":"","o":[{"a":"","b":1,"c":[0,92,100,121,126,184,200,247,252,276,300,368,373,378,390,400,460,499,500,504,552,600,625,630,644,650,692,700,751,756,784,800,876,877,882,900,950,968,984,1000,1003,1008,1060,1100,1129,1150,1152,1155,1191,1200,1250,1253,1255,1300,1303,1317,1400,1438,1443,1500,1550,1564,1569,1600,1690,1695,1700,1800,1816,1850,1877,1900,1998,2000]}],"p":[false,false,false],"r":{},"s":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Cdb40afaafb164353b9fc5c31c176977ce618b341230548ad8d927c1fdce87994",,"t":"C%3A%5CeGovFrameDev-3.9.0-64bit_kofons%5Cworkspace%5Cfairnet%5Csrc%5Cmain%5Cwebapp%5CWEB-INF%5Cclipreport4%2Ftemp%2F%5Cdb40afaafb164353b9fc5c31c176977c299dc412ea584feb9dcf35b95911f2d9",}
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
@ -1 +0,0 @@
|
||||
end
|
||||