누락 코드 수정

This commit is contained in:
dogyeom
2025-11-18 18:31:03 +09:00
parent 068f5b9fee
commit 916653e26f
@@ -52,7 +52,7 @@ public class BapSysinfoService extends BapBaseService {
public void update(HashMap<String, Object> paramMap) throws Exception {
String password = (String)paramMap.get("userPassword");
if(password == null && password.isEmpty()) {
if(password == null || password.isEmpty()) {
password = " ";
}
@@ -63,7 +63,7 @@ public class BapSysinfoService extends BapBaseService {
public void insert(HashMap<String, Object> paramMap) throws Exception {
String password = (String)paramMap.get("userPassword");
if(password == null && password.isEmpty()) {
if(password == null || password.isEmpty()) {
password = " ";
}