견적특이사항 / 아이템 표시, 미표시 동기화 api service 명 수정

This commit is contained in:
LEEYONGJAE 2024-09-27 16:16:15 +09:00
parent 570b942882
commit d340ba9e63
4 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ public class SpecialNoteController {
@ResponseStatus(HttpStatus.OK)
public void setSpecialNoteItemSave(@RequestBody SpecialNoteItemRequest specialNoteItemRequest)
throws Exception {
specialNoteService.setStoreDisplayItemSave(specialNoteItemRequest);
specialNoteService.setSpecialNoteItemSave(specialNoteItemRequest);
}
}

View File

@ -9,6 +9,6 @@ public interface SpecialNoteMapper {
void setSpecialNoteSave(SpecialNoteRequest specialNoteRequest) throws Exception;
void setStoreDisplayItemSave(SpecialNoteItemRequest specialNoteItemRequest) throws Exception;
void setSpecialNoteItemSave(SpecialNoteItemRequest specialNoteItemRequest) throws Exception;
}

View File

@ -17,9 +17,9 @@ public class SpecialNoteService {
specialNoteMapper.setSpecialNoteSave(specialNoteRequest);
}
public void setStoreDisplayItemSave(SpecialNoteItemRequest specialNoteItemRequest)
public void setSpecialNoteItemSave(SpecialNoteItemRequest specialNoteItemRequest)
throws Exception {
specialNoteMapper.setStoreDisplayItemSave(specialNoteItemRequest);
specialNoteMapper.setSpecialNoteItemSave(specialNoteItemRequest);
}
}

View File

@ -42,7 +42,7 @@
);
</insert>
<insert id="setStoreDisplayItemSave" parameterType="com.interplug.qcast.biz.specialNote.dto.SpecialNoteItemRequest" >
<insert id="setSpecialNoteItemSave" parameterType="com.interplug.qcast.biz.specialNote.dto.SpecialNoteItemRequest" >
/* sqlid : com.interplug.qcast.specialNote.setStoreDisplayItemSave (견적 특이사항 ITEM 정보 등록/수정 - 동기화) */
MERGE T_OBJECT_SPECIAL_NOTE_ITEM AS A
USING