feat: format error

This commit is contained in:
2025-11-20 14:50:02 +09:00
parent 5c030869fd
commit 04678b6b6e
33 changed files with 1031 additions and 852 deletions

View File

@@ -17,9 +17,9 @@ public class CommonCodeService {
private final CommonCodeCoreService commonCodeCoreService;
/**
* 공통코드 목록 조회
*
* @return 모튼 코드 정보
*/
public List<Basic> getFindAll() {
@@ -28,6 +28,7 @@ public class CommonCodeService {
/**
* 공통코드 단건 조회
*
* @param id
* @return 코드 아이디로 조회한 코드 정보
*/
@@ -37,6 +38,7 @@ public class CommonCodeService {
/**
* 공통코드 생성 요청
*
* @param req 생성요청 정보
* @return 생성된 코드 id
*/
@@ -47,6 +49,7 @@ public class CommonCodeService {
/**
* 공통코드 수정 요청
*
* @param id 코드 아이디
* @param req 수정요청 정보
*/
@@ -57,6 +60,7 @@ public class CommonCodeService {
/**
* 공통코드 삭제 처리
*
* @param id 코드 아이디
*/
@Transactional
@@ -66,6 +70,7 @@ public class CommonCodeService {
/**
* 공통코드 순서 변경
*
* @param req id, order 정보를 가진 List
*/
@Transactional
@@ -75,6 +80,7 @@ public class CommonCodeService {
/**
* 코드기반 조회
*
* @param code 코드
* @return 코드로 조회한 공통코드 정보
*/