lombok으로 인한 get 수정

This commit is contained in:
hehihoho3@gmail.com 2024-11-14 10:25:31 +09:00
parent eaa13562d6
commit 46239b4b3e
3 changed files with 10 additions and 10 deletions

View File

@ -955,11 +955,11 @@ public class MjonMsgCampainHGDataController {
eachPrice = mjonMsgVO.getP2Price();
}else if(fileCount == 1) {//그림 이미지가 1개
eachPrice = mjonMsgVO.getpPrice();
eachPrice = mjonMsgVO.getPPrice();
}else {//장문 문자인 경우
eachPrice = mjonMsgVO.getmPrice();
eachPrice = mjonMsgVO.getMPrice();
}
}

View File

@ -1401,11 +1401,11 @@ public class MjonMsgCampainTWDataController {
eachPrice = mjonMsgVO.getP2Price();
}else if(fileCount == 1) {//그림 이미지가 1개
eachPrice = mjonMsgVO.getpPrice();
eachPrice = mjonMsgVO.getPPrice();
}else {//장문 문자인 경우
eachPrice = mjonMsgVO.getmPrice();
eachPrice = mjonMsgVO.getMPrice();
}
}

View File

@ -1813,7 +1813,7 @@ public class TestController {
imgMsgVO.setRep4List(imgRep4);
//개별단가 계산하기
String eachPrice = imgMsgVO.getpPrice();
String eachPrice = imgMsgVO.getPPrice();
//api 서버에서 pPrice 값이 없는 경우가 있어서 오류 방지를위해서 추가
if(eachPrice == null) {
@ -1836,7 +1836,7 @@ public class TestController {
eachPrice = mjonMsgVO.getP2Price();
}else if(fileCount == 1) {//그림 이미지가 1개
eachPrice = mjonMsgVO.getpPrice();
eachPrice = mjonMsgVO.getPPrice();
}
@ -1864,7 +1864,7 @@ public class TestController {
shortMsgVO.setRep4List(shortRep4);
//개별단가 계산하기
String eachPrice = shortMsgVO.getsPrice();
String eachPrice = shortMsgVO.getSPrice();
//api 서버에서 sPrice 값이 없는 경우가 있어서 오류 방지를위해서 추가
if(eachPrice == null) {
@ -1887,7 +1887,7 @@ public class TestController {
eachPrice = mjonMsgVO.getP2Price();
}else if(fileCount == 1) {//그림 이미지가 1개
eachPrice = mjonMsgVO.getpPrice();
eachPrice = mjonMsgVO.getPPrice();
}
@ -1923,7 +1923,7 @@ public class TestController {
* 그림문자의 경우 이로직을 타지 않지만 혹시 몰라서 추가해놓음
* */
String eachPrice = longMsgVO.getmPrice();
String eachPrice = longMsgVO.getMPrice();
//api 서버에서 mPrice 값이 없는 경우가 있어서 오류 방지를위해서 추가
if(eachPrice == null) {
@ -1941,7 +1941,7 @@ public class TestController {
eachPrice = mjonMsgVO.getP2Price();
}else if(fileCount == 1) {//그림 이미지가 1개
eachPrice = mjonMsgVO.getpPrice();
eachPrice = mjonMsgVO.getPPrice();
}