We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb30305 commit 4ef9e2bCopy full SHA for 4ef9e2b
1 file changed
src/main/java/com/bootsignal/domain/course/entity/Course.java
@@ -26,6 +26,10 @@ public class Course extends BaseEntity {
26
@Column(nullable = false)
27
private String title;
28
29
+ // 기관명 / 원본: subtitle
30
+ @Column(nullable = false)
31
+ private String subTitle;
32
+
33
// 과정 상세 링크 / 원본: titleLink
34
@Column(length = 1000)
35
private String titleLink;
@@ -43,9 +47,6 @@ public class Course extends BaseEntity {
43
47
// NCS 여부 / 원본: ncsYn
44
48
private String ncsYn;
45
49
46
- // 훈련 대상 / 원본: trprTarget
- private String trainTarget;
-
50
// 훈련비 / 원본: courseMan
51
private BigDecimal courseMan;
52
0 commit comments