화면 오류 수정 사항 반영
This commit is contained in:
@@ -37,7 +37,7 @@
|
|||||||
{ name: "BJOBBZWKNAME", align: "left" },
|
{ name: "BJOBBZWKNAME", align: "left" },
|
||||||
{ name: "BJOBTRANDSTCDNAME", align: "left" },
|
{ name: "BJOBTRANDSTCDNAME", align: "left" },
|
||||||
{ name: "BJOBMSGDSTICNAME", align: "left" },
|
{ name: "BJOBMSGDSTICNAME", align: "left" },
|
||||||
{ name: "UAPPLCD", align: "center", hidden: true },
|
{ name: "UAPPLCD", align: "center" },
|
||||||
{ name: "THISMSGCHRGIDS", align: "left" },
|
{ name: "THISMSGCHRGIDS", align: "left" },
|
||||||
{ name: "BJOBTELGMRECSIZE", align: "center" },
|
{ name: "BJOBTELGMRECSIZE", align: "center" },
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ function init(url,key){
|
|||||||
new makeOptions("CODE","NAME").setObj($("select[name=bjobBzwkDstcd]")).setData(json.bjobBzwkDstcd).rendering();
|
new makeOptions("CODE","NAME").setObj($("select[name=bjobBzwkDstcd]")).setData(json.bjobBzwkDstcd).rendering();
|
||||||
new makeOptions("CODE","NAME").setObj($("select[name=sysCd]")).setNoValueInclude(true).setNoValue(' ','없음').setData(json.sysCd).rendering();
|
new makeOptions("CODE","NAME").setObj($("select[name=sysCd]")).setNoValueInclude(true).setNoValue(' ','없음').setData(json.sysCd).rendering();
|
||||||
new makeOptions("CODE","NAME").setObj($("select[name=sysCd2]")).setNoValueInclude(true).setNoValue('','없음').setData(json.sysCd).rendering();
|
new makeOptions("CODE","NAME").setObj($("select[name=sysCd2]")).setNoValueInclude(true).setNoValue('','없음').setData(json.sysCd).rendering();
|
||||||
/* new makeOptions("CODE","NAME").setObj($("select[name=uapplCd]")).setNoValueInclude(true).setNoValue(' ','없음').setData(json.uapplCd).rendering(); */
|
new makeOptions("CODE","NAME").setObj($("select[name=uapplCd]")).setNoValueInclude(true).setNoValue(' ','없음').setData(json.uapplCd).rendering();
|
||||||
//new makeOptions("CODE","NAME").setObj($("select[name=bizlevel1]")).setNoValueInclude(true).setNoValue(' ','없음').setData(json.bizlevel1).rendering();
|
//new makeOptions("CODE","NAME").setObj($("select[name=bizlevel1]")).setNoValueInclude(true).setNoValue(' ','없음').setData(json.bizlevel1).rendering();
|
||||||
//new makeOptions("CODE","NAME").setObj($("select[name=bizlevel2]")).setNoValueInclude(true).setNoValue(' ','없음').setData(json.bizlevel2).rendering();
|
//new makeOptions("CODE","NAME").setObj($("select[name=bizlevel2]")).setNoValueInclude(true).setNoValue(' ','없음').setData(json.bizlevel2).rendering();
|
||||||
//setSearchable('bjobBzwkDstcd');
|
//setSearchable('bjobBzwkDstcd');
|
||||||
|
|||||||
+3
-3
@@ -80,7 +80,7 @@ public class BapAdapterPropertyController extends BapBaseAnnotationController {
|
|||||||
HashMap<String, Object>[] list = gson.fromJson(gridData, HashMap[].class);
|
HashMap<String, Object>[] list = gson.fromJson(gridData, HashMap[].class);
|
||||||
service.insert(map,list);
|
service.insert(map,list);
|
||||||
|
|
||||||
CommonCommand command = new CommonCommand("com.eactive.eai.agent.adptproperty.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
CommonCommand command = new CommonCommand("com.eactive.eai.agent.property.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
@@ -94,7 +94,7 @@ public class BapAdapterPropertyController extends BapBaseAnnotationController {
|
|||||||
HashMap<String, Object>[] list = gson.fromJson(gridData, HashMap[].class);
|
HashMap<String, Object>[] list = gson.fromJson(gridData, HashMap[].class);
|
||||||
service.update(map,list);
|
service.update(map,list);
|
||||||
|
|
||||||
CommonCommand command = new CommonCommand("com.eactive.eai.agent.adptproperty.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
CommonCommand command = new CommonCommand("com.eactive.eai.agent.property.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
@@ -107,7 +107,7 @@ public class BapAdapterPropertyController extends BapBaseAnnotationController {
|
|||||||
paramMap.put("prptyGroupName", prptyGroupName);
|
paramMap.put("prptyGroupName", prptyGroupName);
|
||||||
service.delete(paramMap);
|
service.delete(paramMap);
|
||||||
|
|
||||||
CommonCommand command = new CommonCommand("com.eactive.eai.agent.teleproperty.RemovePropertyCommand",prptyGroupName);
|
CommonCommand command = new CommonCommand("com.eactive.eai.agent.property.RemovePropertyCommand",prptyGroupName);
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import org.springframework.beans.factory.annotation.Qualifier;
|
|||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import com.eactive.eai.common.seed.Seed;
|
import com.eactive.eai.common.seed.Seed;
|
||||||
|
import com.eactive.eai.common.util.StringUtil;
|
||||||
import com.eactive.eai.rms.bap.common.base.BapBaseService;
|
import com.eactive.eai.rms.bap.common.base.BapBaseService;
|
||||||
|
|
||||||
@Service("bapSysinfoService")
|
@Service("bapSysinfoService")
|
||||||
@@ -44,18 +45,28 @@ public class BapSysinfoService extends BapBaseService {
|
|||||||
|
|
||||||
String password = (String)map.get("USERPASSWORD");
|
String password = (String)map.get("USERPASSWORD");
|
||||||
map.put("USERPASSWORD", Seed.decrypt(password));
|
map.put("USERPASSWORD", Seed.decrypt(password));
|
||||||
|
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void update(HashMap<String, Object> paramMap) throws Exception {
|
public void update(HashMap<String, Object> paramMap) throws Exception {
|
||||||
|
|
||||||
String password = (String)paramMap.get("userPassword");
|
String password = (String)paramMap.get("userPassword");
|
||||||
|
|
||||||
|
if(password == null ) {
|
||||||
|
password = " ";
|
||||||
|
}
|
||||||
|
|
||||||
paramMap.put("userPassword", Seed.encrypt(password));
|
paramMap.put("userPassword", Seed.encrypt(password));
|
||||||
dao.update(paramMap);
|
dao.update(paramMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void insert(HashMap<String, Object> paramMap) throws Exception {
|
public void insert(HashMap<String, Object> paramMap) throws Exception {
|
||||||
String password = (String)paramMap.get("userPassword");
|
String password = (String)paramMap.get("userPassword");
|
||||||
|
|
||||||
|
if(password == null ) {
|
||||||
|
password = " ";
|
||||||
|
}
|
||||||
|
|
||||||
paramMap.put("userPassword", Seed.encrypt(password));
|
paramMap.put("userPassword", Seed.encrypt(password));
|
||||||
dao.insert(paramMap);
|
dao.insert(paramMap);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -121,7 +121,7 @@ public class BapSystemInstController extends BapBaseAnnotationController {
|
|||||||
command = new CommonCommand("com.eactive.eai.agent.flowController.AddBatchTargetCommand",arg);
|
command = new CommonCommand("com.eactive.eai.agent.flowController.AddBatchTargetCommand",arg);
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
command = new CommonCommand("com.eactive.eai.agent.teleproperty.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
command = new CommonCommand("com.eactive.eai.agent.property.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
@@ -163,7 +163,7 @@ public class BapSystemInstController extends BapBaseAnnotationController {
|
|||||||
command = new CommonCommand("com.eactive.eai.agent.flowController.AddBatchTargetCommand",arg);
|
command = new CommonCommand("com.eactive.eai.agent.flowController.AddBatchTargetCommand",arg);
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
command = new CommonCommand("com.eactive.eai.agent.teleproperty.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
command = new CommonCommand("com.eactive.eai.agent.property.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
@@ -356,7 +356,7 @@ public class BapSystemInstController extends BapBaseAnnotationController {
|
|||||||
command = new CommonCommand("com.eactive.eai.agent.flowController.AddBatchTargetCommand",arg);
|
command = new CommonCommand("com.eactive.eai.agent.flowController.AddBatchTargetCommand",arg);
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
command = new CommonCommand("com.eactive.eai.agent.teleproperty.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
command = new CommonCommand("com.eactive.eai.agent.property.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
ModelAndView modelAndView = new ModelAndView("jsonView", map);
|
ModelAndView modelAndView = new ModelAndView("jsonView", map);
|
||||||
|
|||||||
+5
-4
@@ -91,7 +91,7 @@ public class BapMessageProcController extends BapBaseAnnotationController {
|
|||||||
service.insert(map,list, connList);
|
service.insert(map,list, connList);
|
||||||
CommonCommand command = new CommonCommand("com.eactive.eai.agent.rule.dirInfo.RefreshAllJobCommand");
|
CommonCommand command = new CommonCommand("com.eactive.eai.agent.rule.dirInfo.RefreshAllJobCommand");
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
command = new CommonCommand("com.eactive.eai.agent.teleproperty.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
command = new CommonCommand("com.eactive.eai.agent.property.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
@@ -111,7 +111,7 @@ public class BapMessageProcController extends BapBaseAnnotationController {
|
|||||||
service.update(map, list, connList);
|
service.update(map, list, connList);
|
||||||
CommonCommand command = new CommonCommand("com.eactive.eai.agent.rule.dirInfo.RefreshAllJobCommand");
|
CommonCommand command = new CommonCommand("com.eactive.eai.agent.rule.dirInfo.RefreshAllJobCommand");
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
command = new CommonCommand("com.eactive.eai.agent.teleproperty.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
command = new CommonCommand("com.eactive.eai.agent.property.UpdatePropertyCommand",(String)map.get("prptyGroupName"));
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
@@ -123,7 +123,7 @@ public class BapMessageProcController extends BapBaseAnnotationController {
|
|||||||
service.delete(paramMap);
|
service.delete(paramMap);
|
||||||
CommonCommand command = new CommonCommand("com.eactive.eai.agent.rule.dirInfo.RefreshAllJobCommand");
|
CommonCommand command = new CommonCommand("com.eactive.eai.agent.rule.dirInfo.RefreshAllJobCommand");
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
command = new CommonCommand("com.eactive.eai.agent.teleproperty.RemovePropertyCommand",(String)paramMap.get("prptyGroupName"));
|
command = new CommonCommand("com.eactive.eai.agent.property.RemovePropertyCommand",(String)paramMap.get("prptyGroupName"));
|
||||||
agentUtilService.broadcast(command);
|
agentUtilService.broadcast(command);
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
@@ -142,6 +142,7 @@ public class BapMessageProcController extends BapBaseAnnotationController {
|
|||||||
// comboService.selectListComboForTable("TSEAICM01", "TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME","systeminoutdstcd = 'I' ");
|
// comboService.selectListComboForTable("TSEAICM01", "TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME","systeminoutdstcd = 'I' ");
|
||||||
// List<Map<String, Object>> bJobCycleGb = //comboService.selectListCombo("BAP_CYCLE_GB"); // BATCH작업주기구분
|
// List<Map<String, Object>> bJobCycleGb = //comboService.selectListCombo("BAP_CYCLE_GB"); // BATCH작업주기구분
|
||||||
// comboService.selectListComboForTable("TSEAICM20", "code", "codename","codegroup = 'BAP_CYCLE_GB' ");
|
// comboService.selectListComboForTable("TSEAICM20", "code", "codename","codegroup = 'BAP_CYCLE_GB' ");
|
||||||
|
List<Map<String, Object>> uapplCd = comboService.selectCM01ComboList("TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME");
|
||||||
|
|
||||||
Map<String, Object> resultMap = new HashMap<String, Object>();
|
Map<String, Object> resultMap = new HashMap<String, Object>();
|
||||||
|
|
||||||
@@ -149,7 +150,7 @@ public class BapMessageProcController extends BapBaseAnnotationController {
|
|||||||
resultMap.put("bjobInstiDstcd", bjobInstiDstcd);
|
resultMap.put("bjobInstiDstcd", bjobInstiDstcd);
|
||||||
// resultMap.put("groupCoCd" , groupCoCd);
|
// resultMap.put("groupCoCd" , groupCoCd);
|
||||||
resultMap.put("sysCd" , sysCd);
|
resultMap.put("sysCd" , sysCd);
|
||||||
// resultMap.put("uapplCd" , uapplCd);
|
resultMap.put("uapplCd" , uapplCd);
|
||||||
// resultMap.put("bJobCycleGb" , bJobCycleGb);
|
// resultMap.put("bJobCycleGb" , bJobCycleGb);
|
||||||
|
|
||||||
ModelAndView modelAndView = new ModelAndView("jsonView",resultMap);
|
ModelAndView modelAndView = new ModelAndView("jsonView",resultMap);
|
||||||
|
|||||||
+2
-1
@@ -158,12 +158,13 @@ public class BapTransactionStatusController extends BapBaseAnnotationController
|
|||||||
List<Map<String, Object>> bjobBzwkDstcd = comboService.selectListComboForTableWithCode("TSEAIBJ02", "BJOBBZWKDSTCD", "BJOBBZWKNAME");
|
List<Map<String, Object>> bjobBzwkDstcd = comboService.selectListComboForTableWithCode("TSEAIBJ02", "BJOBBZWKDSTCD", "BJOBBZWKNAME");
|
||||||
List<Map<String, Object>> osidInstiDstcd = service.selectOsidInstiDstcd("");
|
List<Map<String, Object>> osidInstiDstcd = service.selectOsidInstiDstcd("");
|
||||||
// List<Map<String, Object>> uapplCd = comboService.selectListComboForTableWithCode("TSEAICM01", "TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME");
|
// List<Map<String, Object>> uapplCd = comboService.selectListComboForTableWithCode("TSEAICM01", "TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME");
|
||||||
|
List<Map<String, Object>> uapplCd = comboService.selectCM01ComboList("TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME");
|
||||||
|
|
||||||
Map<String, Object> resultMap = new HashMap<String, Object>();
|
Map<String, Object> resultMap = new HashMap<String, Object>();
|
||||||
|
|
||||||
resultMap.put("bjobBzwkDstcd" , bjobBzwkDstcd);
|
resultMap.put("bjobBzwkDstcd" , bjobBzwkDstcd);
|
||||||
resultMap.put("osidInstiDstcd" , osidInstiDstcd);
|
resultMap.put("osidInstiDstcd" , osidInstiDstcd);
|
||||||
// resultMap.put("uapplCd" , uapplCd);
|
resultMap.put("uapplCd" , uapplCd);
|
||||||
|
|
||||||
ModelAndView modelAndView = new ModelAndView("jsonView",resultMap);
|
ModelAndView modelAndView = new ModelAndView("jsonView",resultMap);
|
||||||
return modelAndView;
|
return modelAndView;
|
||||||
|
|||||||
+2
-1
@@ -74,12 +74,13 @@ public class BapTransactionTraceController extends BapBaseAnnotationController
|
|||||||
// List<Map<String, Object>> groupCoCd = comboService.selectListComboForTable("TSEAICM20", "code", "codename","codegroup = 'EAIGROUPCOCD' ");
|
// List<Map<String, Object>> groupCoCd = comboService.selectListComboForTable("TSEAICM20", "code", "codename","codegroup = 'EAIGROUPCOCD' ");
|
||||||
List<Map<String, Object>> bjobBzwkDstcd = comboService.selectListComboForTableWithCode("TSEAIBJ02", "BJOBBZWKDSTCD", "BJOBBZWKNAME");
|
List<Map<String, Object>> bjobBzwkDstcd = comboService.selectListComboForTableWithCode("TSEAIBJ02", "BJOBBZWKDSTCD", "BJOBBZWKNAME");
|
||||||
// List<Map<String, Object>> uapplCd = comboService.selectListComboForTableWithCode("TSEAICM01", "TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME");
|
// List<Map<String, Object>> uapplCd = comboService.selectListComboForTableWithCode("TSEAICM01", "TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME");
|
||||||
|
List<Map<String, Object>> uapplCd = comboService.selectCM01ComboList("TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME");
|
||||||
|
|
||||||
Map<String, Object> resultMap = new HashMap<String, Object>();
|
Map<String, Object> resultMap = new HashMap<String, Object>();
|
||||||
|
|
||||||
resultMap.put("bjobBzwkDstcd" , bjobBzwkDstcd);
|
resultMap.put("bjobBzwkDstcd" , bjobBzwkDstcd);
|
||||||
// resultMap.put("groupCoCd" , groupCoCd);
|
// resultMap.put("groupCoCd" , groupCoCd);
|
||||||
// resultMap.put("uapplCd" , uapplCd);
|
resultMap.put("uapplCd" , uapplCd);
|
||||||
|
|
||||||
ModelAndView modelAndView = new ModelAndView("jsonView",resultMap);
|
ModelAndView modelAndView = new ModelAndView("jsonView",resultMap);
|
||||||
return modelAndView;
|
return modelAndView;
|
||||||
|
|||||||
@@ -16,4 +16,5 @@ public interface IbatisComboService {
|
|||||||
|
|
||||||
List<Map<String, Object>> selectListComboForTableWithCode(String tableName, String codeColumn, String nameColumn);
|
List<Map<String, Object>> selectListComboForTableWithCode(String tableName, String codeColumn, String nameColumn);
|
||||||
|
|
||||||
|
List<Map<String, Object>> selectCM01ComboList(String codeColumn, String nameColumn);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,4 +25,8 @@ class ComboDao extends SqlMapClientTemplateDao {
|
|||||||
return this.template.queryForList("Combo.selectListComboForTableWithCode", paramMap);
|
return this.template.queryForList("Combo.selectListComboForTableWithCode", paramMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<Map<String, Object>> selectCM01ComboList(HashMap<String, Object> paramMap) {
|
||||||
|
return this.template.queryForList("Combo.selectCM01ComboList", paramMap);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -65,4 +65,13 @@ public class IbatisComboServiceImpl implements IbatisComboService {
|
|||||||
return ibatisComboDao.selectListComboForTableWithCode(paramMap);
|
return ibatisComboDao.selectListComboForTableWithCode(paramMap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Deprecated
|
||||||
|
public List<Map<String, Object>> selectCM01ComboList(String codeColumn, String nameColumn) {
|
||||||
|
HashMap<String, Object> paramMap = new HashMap<>();
|
||||||
|
paramMap.put("codeColumn", codeColumn);
|
||||||
|
paramMap.put("nameColumn", nameColumn);
|
||||||
|
return ibatisComboDao.selectCM01ComboList(paramMap);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,5 +49,13 @@
|
|||||||
ORDER BY 1
|
ORDER BY 1
|
||||||
</statement>
|
</statement>
|
||||||
|
|
||||||
|
<statement id="selectCM01ComboList" parameterClass="java.util.HashMap" resultClass="java.util.HashMap">
|
||||||
|
SELECT distinct $codeColumn$ CODE, '[' || $codeColumn$ || ']' || $nameColumn$ NAME
|
||||||
|
FROM EMSADM.TSEAICM20
|
||||||
|
<isNotEmpty prepend="WHERE" property="where">
|
||||||
|
$where$
|
||||||
|
</isNotEmpty>
|
||||||
|
ORDER BY NAME ASC
|
||||||
|
</statement>
|
||||||
|
|
||||||
</sqlMap>
|
</sqlMap>
|
||||||
|
|||||||
@@ -46,10 +46,10 @@
|
|||||||
SysName = #sysName#,
|
SysName = #sysName#,
|
||||||
SysIp = #sysIp#,
|
SysIp = #sysIp#,
|
||||||
SysPort = #sysPort#,
|
SysPort = #sysPort#,
|
||||||
UserId = #userId#,
|
UserId = NVL(#userId#,' '),
|
||||||
UserPassword = #userPassword#,
|
UserPassword = #userPassword#,
|
||||||
SendDir = #sendDir#,
|
SendDir = NVL(#sendDir#, ' '),
|
||||||
RecvDir = #recvDir#,
|
RecvDir = NVL(#sendDir#, ' '),
|
||||||
SftpYn = #sftpYn#,
|
SftpYn = #sftpYn#,
|
||||||
ThisMsgUseYn = #thisMsgUseYn#,
|
ThisMsgUseYn = #thisMsgUseYn#,
|
||||||
ThisMsgAmndrID = #userid# ,
|
ThisMsgAmndrID = #userid# ,
|
||||||
@@ -79,10 +79,10 @@
|
|||||||
#sysName# ,
|
#sysName# ,
|
||||||
#sysIp# ,
|
#sysIp# ,
|
||||||
#sysPort# ,
|
#sysPort# ,
|
||||||
#userId# ,
|
NVL(#userId#,' ') ,
|
||||||
#userPassword#,
|
#userPassword#,
|
||||||
#sendDir# ,
|
NVL(#sendDir#, ' ') ,
|
||||||
#recvDir# ,
|
NVL(#recvDir# , ' ') ,
|
||||||
#sftpYn# ,
|
#sftpYn# ,
|
||||||
#thisMsgUseYn#,
|
#thisMsgUseYn#,
|
||||||
#userid#,
|
#userid#,
|
||||||
|
|||||||
Reference in New Issue
Block a user