File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
import apiClient from "./index";
/** 게시판 내용 API */
// 게시판 내용 목록 조회
export const findAll = search => {
return apiClient.post(`/bbsCn/findAll.json`, search);
}
// 게시판 내용 목록 조회
export const findAllFile = search => {
return apiClient.post(`/bbsCn/findAllFile.json`, search);
}
// 게시판 내용 상세 조회
export const findByBbsCn = bbsCn => {
return apiClient.post(`/bbsCn/findByBbsCn.json`, bbsCn);
}
// 게시판 내용 등록
export const save = bbsCn => {
return apiClient.post(`/bbsCn/saveProc.json`, bbsCn);
}
// 게시판 내용 수정
export const update = bbsCn => {
return apiClient.post(`/bbsCn/updateProc.json`, bbsCn);
}
// 게시판 내용 삭제
export const del = bbsCn => {
return apiClient.post(`/bbsCn/deleteProc.json`, bbsCn);
}
// 게시판 조회수 증가
export const updateVwCnt = params => {
return apiClient.post(`/bbsCn/updateVwCnt.json`, params);
}