2023-06-22 17:15
This commit is contained in:
parent
800fa2b65f
commit
e5866d89c9
@ -229,6 +229,7 @@
|
||||
<!-- 관리자 대쉬보드 접속 리스트 -->
|
||||
<select id="LoginLogDAO.selectAmdinLog" parameterClass="loginLog" resultClass="loginLog">
|
||||
SELECT
|
||||
COUNT(1) OVER() AS totCnt ,
|
||||
a.ADMINLOG_ID logId ,
|
||||
b.USER_NM loginNm,
|
||||
DATE_FORMAT(a.CREAT_DT, '%Y-%m-%d %H:%i' ) creatDt,
|
||||
@ -256,6 +257,7 @@
|
||||
a.URL LIKE CONCAT('%' , #searchKeyword#, '%')
|
||||
</isEqual>
|
||||
</isNotEmpty>
|
||||
|
||||
ORDER BY 1=1
|
||||
<isNotEmpty property="searchSortCnd">
|
||||
,$searchSortCnd$
|
||||
|
||||
@ -127,6 +127,7 @@
|
||||
</div>
|
||||
<div class="mem_cont_in">
|
||||
<div class="input_list">
|
||||
<!--
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*mberId
|
||||
<input type="text" class="list_inputType1" id="mberId" maxlength="100" value="goodgkdus" size="100"/>
|
||||
@ -137,6 +138,7 @@
|
||||
<input type="text" class="list_inputType1" id="apiKey" maxlength="100" value="24cb8ec4ed7c16969d2ab2988dd2406ee2820" size="100"/>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*메시지ID
|
||||
|
||||
@ -24,17 +24,17 @@
|
||||
|
||||
//회원아이디, APIKEY - 보안을 위해 실제 서비스 시에는 이곳에 mberId와 apiKey 값을 적어서 사용해주세요
|
||||
//실제서비스용
|
||||
// final String mberId = "goodgkdus"; //문자온 로그인 아이디
|
||||
// final String apiKey = "12e749877379aa7426275414050694b953"; //발급받은 api key
|
||||
final String mberId = "antelope"; //문자온 로그인 아이디
|
||||
final String apiKey = "5ec0a0311a7a0eb25cc9c11468ce372cd64501"; //발급받은 api key
|
||||
|
||||
//테스트용
|
||||
String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
//String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
|
||||
/******************** 전송요청 URL ********************/
|
||||
//final String apiUrl = "https://api.munjaon.co.kr/api/inqry/hstryDetail";
|
||||
final String apiUrl = "http://localhost:8088/api/inqry/hstryDetail";
|
||||
//final String apiUrl = "https://api.munjaon.co.kr/api/inqry/hstryDetail";
|
||||
final String apiUrl = "https://api.munjaon.co.kr/api/inqry/hstryDetail"; // 전송요청 URL
|
||||
|
||||
// String apiUrl = "https://apidev.munjaon.co.kr:9998/api/inqry/hstryDetail";
|
||||
/**************** 발송가능건수 예제 ******************/
|
||||
|
||||
@ -148,7 +148,8 @@
|
||||
|
||||
</div>
|
||||
<div class="mem_cont_in">
|
||||
<div class="input_list">
|
||||
<div class="input_list">
|
||||
<!--
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*mberId
|
||||
<input type="text" class="list_inputType1" id="mberId" maxlength="100" value="goodgkdus" size="100"/>
|
||||
@ -159,6 +160,7 @@
|
||||
<input type="text" class="list_inputType1" id="apiKey" maxlength="100" value="12e749877379aa7426275414050694b953" size="100"/>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">페이지번호
|
||||
|
||||
@ -24,19 +24,19 @@
|
||||
|
||||
//회원아이디, APIKEY - 보안을 위해 실제 서비스 시에는 이곳에 mberId와 apiKey 값을 적어서 사용해주세요
|
||||
//실제서비스용
|
||||
//final String mberId = "goodgkdus"; //문자온 로그인 아이디
|
||||
//final String apiKey = "12e749877379aa7426275414050694b953"; //발급받은 api key
|
||||
final String mberId = "antelope"; //문자온 로그인 아이디
|
||||
final String apiKey = "5ec0a0311a7a0eb25cc9c11468ce372cd64501"; //발급받은 api key
|
||||
|
||||
//테스트용
|
||||
String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
//String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
|
||||
/******************** 전송요청 URL ********************/
|
||||
//final String apiUrl = "https://api.munjaon.co.kr/api/inqry/hstry";
|
||||
// final String apiUrl = "http://localhost:8088/api/inqry/hstry";
|
||||
|
||||
String apiUrl = "https://apidev.munjaon.co.kr:9998/api/inqry/hstry"; // 전송요청 URL
|
||||
String apiUrl = "https://api.munjaon.co.kr/api/inqry/hstry"; // 전송요청 URL
|
||||
/**************** 발송가능건수 예제 ******************/
|
||||
System.out.println("전체발송이력");
|
||||
|
||||
|
||||
@ -81,7 +81,8 @@
|
||||
|
||||
</div>
|
||||
<div class="mem_cont_in">
|
||||
<div class="input_list">
|
||||
<div class="input_list">
|
||||
<!--
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*mberId
|
||||
<input type="text" class="list_inputType1" id="mberId" maxlength="100" value="goodgkdus" size="100"/>
|
||||
@ -92,6 +93,7 @@
|
||||
<input type="text" class="list_inputType1" id="apiKey" maxlength="100" value="24cb8ec4ed7c16969d2ab2988dd2406ee2820" size="100"/>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<div class="mem_btnWrap2">
|
||||
<button type="button" class="mem_btn3" style="width: 100%;" id="ajax_select_price" onclick="return false;">발송가능건수 요청</button>
|
||||
|
||||
@ -28,17 +28,21 @@
|
||||
//final String apiKey = "12e749877379aa7426275414050694b953"; //발급받은 api key
|
||||
|
||||
//테스트용
|
||||
String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
//String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
|
||||
/******************** 전송요청 URL ********************/
|
||||
final String apiUrl = "https://apidev.munjaon.co.kr:9998/api/inqry/selectPrice";
|
||||
final String apiUrl = "https://api.munjaon.co.kr/api/inqry/selectPrice";
|
||||
// final String apiUrl = "http://localhost:8088/api/inqry/selectPrice";
|
||||
|
||||
final String mberId = "antelope"; //문자온 로그인 아이디
|
||||
final String apiKey = "5ec0a0311a7a0eb25cc9c11468ce372cd64501"; //발급받은 api key
|
||||
|
||||
/**************** 발송가능건수 예제 ******************/
|
||||
System.out.println("잔액|단가|발송가능건수");
|
||||
|
||||
|
||||
|
||||
Map<String, String> params = new HashMap<String, String>();
|
||||
|
||||
|
||||
@ -78,7 +78,8 @@
|
||||
|
||||
</div>
|
||||
<div class="mem_cont_in">
|
||||
<div class="input_list">
|
||||
<div class="input_list">
|
||||
<!--
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*mberId
|
||||
<input type="text" class="list_inputType1" id="mberId" maxlength="100" value="goodgkdus" size="100"/>
|
||||
@ -89,6 +90,7 @@
|
||||
<input type="text" class="list_inputType1" id="apiKey" maxlength="100" value="24cb8ec4ed7c16969d2ab2988dd2406ee2820" size="100"/>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<!-- 발신자 번호 -->
|
||||
<div class="input_list_item">
|
||||
|
||||
@ -24,17 +24,17 @@
|
||||
|
||||
/******************** 전송 요청 URL ********************/
|
||||
//final String apiUrl = "http://localhost:8088/api/send/sendMsg";
|
||||
final String apiUrl = "https://apidev.munjaon.co.kr:9998/api/send/sendMsg"; //개발테스트용 URL
|
||||
final String apiUrl = "https://api.munjaon.co.kr/api/send/sendMsg"; //개발테스트용 URL
|
||||
//final String apiUrl = "https://api.munjaon.co.kr:9998/api/send/sendMsg"; //실제 서비스 URL
|
||||
|
||||
//회원아이디, APIKEY - 보안을 위해 실제 서비스 시에는 이곳에 mberId와 apiKey 값을 적어서 사용
|
||||
//실제서비스용
|
||||
//final String mberId = "goodgkdus"; //문자온 로그인 아이디
|
||||
//final String apiKey = "12e749877379aa7426275414050694b953"; //발급받은 api key
|
||||
final String mberId = "antelope"; //문자온 로그인 아이디
|
||||
final String apiKey = "5ec0a0311a7a0eb25cc9c11468ce372cd64501"; //발급받은 api key
|
||||
|
||||
//테스트용
|
||||
String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
//String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
/******************** 전송 정보 ********************/
|
||||
//필수 값
|
||||
|
||||
@ -113,7 +113,8 @@
|
||||
|
||||
</div>
|
||||
|
||||
<div class="input_list">
|
||||
<div class="input_list">
|
||||
<!--
|
||||
<div class="input_list_item">
|
||||
<div class="input_left">*mberId
|
||||
<input type="text" class="list_inputType1" id="mberId" maxlength="100" value="goodgkdus" size="100"/>
|
||||
@ -124,6 +125,7 @@
|
||||
<input type="text" class="list_inputType1" id="apiKey" maxlength="100" value="24cb8ec4ed7c16969d2ab2988dd2406ee2820" size="100"/>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
|
||||
<!-- 발신자 번호 -->
|
||||
<div class="input_list_item">
|
||||
|
||||
@ -25,16 +25,16 @@
|
||||
/******************** 전송 요청 URL ********************/
|
||||
//String apiUrl = "http://localhost:8088/api/send/sendMsgs";
|
||||
//final String apiUrl = "https://api.munjaon.co.kr:9998/api/send/sendMsg"; //실제 서비스 URL
|
||||
String apiUrl = "https://apidev.munjaon.co.kr:9998/api/send/sendMsgs"; //개발테스트용 URL
|
||||
String apiUrl = "https://api.munjaon.co.kr/api/send/sendMsgs"; //개발테스트용 URL
|
||||
|
||||
//회원아이디, APIKEY - 보안을 위해 실제 서비스 시에는 이곳에 mberId와 apiKey 값을 적어서 사용
|
||||
//실제서비스용
|
||||
//final String mberId = "goodgkdus"; //문자온 로그인 아이디
|
||||
//final String apiKey = "12e749877379aa7426275414050694b953"; //발급받은 api key
|
||||
final String mberId = "antelope"; //문자온 로그인 아이디
|
||||
final String apiKey = "5ec0a0311a7a0eb25cc9c11468ce372cd64501"; //발급받은 api key
|
||||
|
||||
//테스트용
|
||||
String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
//String mberId = request.getParameter("p_mberId"); //문자온 로그인 아이디
|
||||
//String apiKey = request.getParameter("p_apiKey"); //발급받은 api key
|
||||
|
||||
/******************** 전송 정보 ********************/
|
||||
//필수 값
|
||||
|
||||
Loading…
Reference in New Issue
Block a user