
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.takensoft.common.idgen.vo;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import java.io.Serializable;
/**
* @author takensoft
* @since 2025.01.22
* @modification
* since | author | description
* 2025.01.22 | takensoft | 최초 등록
*
* Serializable - 객체를 직렬화할 수 있게 해주는 인터페이스
*
* 고유 아이디 관련 VO
*/
@NoArgsConstructor
@Getter
@Setter
public class IdgenVO implements Serializable {
private String tblNm; // 테이블명
private int aftrId; // ID값
}