You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
484 B
Java
22 lines
484 B
Java
package go.kr.project.domain.entity;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Embeddable;
|
|
import lombok.*;
|
|
|
|
import java.io.Serializable;
|
|
|
|
@Embeddable
|
|
@Getter
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
@Builder
|
|
@EqualsAndHashCode
|
|
public class CpInstructAnswerId implements Serializable {
|
|
@Column(name = "IA_SGGCODE", length = 5, nullable = false)
|
|
private String iaSggcode;
|
|
|
|
@Column(name = "IA_CODE", length = 3, nullable = false)
|
|
private String iaCode;
|
|
}
|