견적특이사항 / 아이템 표시, 미표시 동기화 api service 명 수정
This commit is contained in:
parent
570b942882
commit
d340ba9e63
@ -35,7 +35,7 @@ public class SpecialNoteController {
|
|||||||
@ResponseStatus(HttpStatus.OK)
|
@ResponseStatus(HttpStatus.OK)
|
||||||
public void setSpecialNoteItemSave(@RequestBody SpecialNoteItemRequest specialNoteItemRequest)
|
public void setSpecialNoteItemSave(@RequestBody SpecialNoteItemRequest specialNoteItemRequest)
|
||||||
throws Exception {
|
throws Exception {
|
||||||
specialNoteService.setStoreDisplayItemSave(specialNoteItemRequest);
|
specialNoteService.setSpecialNoteItemSave(specialNoteItemRequest);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,6 +9,6 @@ public interface SpecialNoteMapper {
|
|||||||
|
|
||||||
void setSpecialNoteSave(SpecialNoteRequest specialNoteRequest) throws Exception;
|
void setSpecialNoteSave(SpecialNoteRequest specialNoteRequest) throws Exception;
|
||||||
|
|
||||||
void setStoreDisplayItemSave(SpecialNoteItemRequest specialNoteItemRequest) throws Exception;
|
void setSpecialNoteItemSave(SpecialNoteItemRequest specialNoteItemRequest) throws Exception;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -17,9 +17,9 @@ public class SpecialNoteService {
|
|||||||
specialNoteMapper.setSpecialNoteSave(specialNoteRequest);
|
specialNoteMapper.setSpecialNoteSave(specialNoteRequest);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setStoreDisplayItemSave(SpecialNoteItemRequest specialNoteItemRequest)
|
public void setSpecialNoteItemSave(SpecialNoteItemRequest specialNoteItemRequest)
|
||||||
throws Exception {
|
throws Exception {
|
||||||
specialNoteMapper.setStoreDisplayItemSave(specialNoteItemRequest);
|
specialNoteMapper.setSpecialNoteItemSave(specialNoteItemRequest);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -42,7 +42,7 @@
|
|||||||
);
|
);
|
||||||
</insert>
|
</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 정보 등록/수정 - 동기화) */
|
/* sqlid : com.interplug.qcast.specialNote.setStoreDisplayItemSave (견적 특이사항 ITEM 정보 등록/수정 - 동기화) */
|
||||||
MERGE T_OBJECT_SPECIAL_NOTE_ITEM AS A
|
MERGE T_OBJECT_SPECIAL_NOTE_ITEM AS A
|
||||||
USING
|
USING
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user