Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[테스트 데이터 생성기] CH 02. CLIP 06. 도메인 설계 1: 기본 회원 정보와 개인 스키마 저장 테이블 #41

Merged
merged 1 commit into from
Jul 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/main/java/uno/fastcampus/testdata/domain/SchemaField.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package uno.fastcampus.testdata.domain;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

@Getter
@Setter
@ToString
public class SchemaField {

private String fieldName;
private String mockDataType;
private Integer fieldOrder;
private Integer blackPercent;
private String typeOptionJson;
private String forceValue;

}
18 changes: 18 additions & 0 deletions src/main/java/uno/fastcampus/testdata/domain/TableSchema.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package uno.fastcampus.testdata.domain;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

import java.time.LocalDateTime;

@Getter
@Setter
@ToString
public class TableSchema {

private String schemaName;
private String userId;
private LocalDateTime exportedAt;

}