custom idgen 수정

This commit is contained in:
hehihoho3@gmail.com 2024-11-27 16:26:46 +09:00
parent f44acfe2c4
commit daf732fe3f
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ public class CustomTableIdGnrServiceImpl implements CustomIdGnrService {
private String columnName = "NEXT_ID"; // NEXT_ID 컬럼명
private String prefix;
private String fillChar = "0"; // 채울 문자 (: 0)
private int cipers = 14; // 자리수 (: 14)
private int cipers = 13; // 자리수 (: 14)
private boolean applyYear;
private boolean useBigDecimals = false;

View File

@ -2343,7 +2343,7 @@
<property name="tableName" value="MSGC_ID"/> <!-- TABLE_NAME 컬럼의 값 -->
<!-- <property name="columnName" value="NEXT_ID"/> NEXT_ID 컬럼명 -->
<property name="prefix" value="MSGCID_"/>
<property name="cipers" value="14"/>
<property name="cipers" value="13"/>
<property name="fillChar" value="0"/>
<property name="applyYear" value="false"/>
<!-- 필요에 따라 추가 프로퍼티 설정 -->