
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package com.ajin.ajinerp.master.commonCode.web;
import com.ajin.ajinerp.common.vo.CustomeResultMap;
import com.ajin.ajinerp.master.commonCode.service.CommonCodeService;
import com.ajin.ajinerp.master.commonCode.vo.CommonCodeVO;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
/**
* @author 이세현
* @since 2024.03.08
*
* (회계)공통코드 관련 처리 컨트롤러
*/
@RestController
@RequiredArgsConstructor
public class CommonCodeController {
private final CommonCodeService commonCodeService;
/**
* @author 이세현
* @since 2024.03.13
*
* 분류 코드 목록 조회
*/
@PostMapping(value = "/commonCodeList.json")
public CustomeResultMap commonCodeList(@RequestBody CommonCodeVO commonCodeVO) throws Exception {
CustomeResultMap map = commonCodeService.commonCodeList(commonCodeVO);
return map;
}
}