Skip to content

Commit

Permalink
docs : what to write
Browse files Browse the repository at this point in the history
  • Loading branch information
ecsimsw committed Aug 12, 2023
1 parent 9fe715f commit 7d8390e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added docs/20230813 용어 정리.md
Empty file.
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
package se.ton.t210.domain;

import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import lombok.Getter;

@Getter
@Entity
public class JudgingClass {
public class EvaluationScoreSection {

@GeneratedValue(strategy = GenerationType.IDENTITY)
@Id
Expand All @@ -22,17 +20,17 @@ public class JudgingClass {

private int takenScore;

public JudgingClass() {
public EvaluationScoreSection() {
}

public JudgingClass(Long id, Long judgingItemId, int targetScore, int takenScore) {
public EvaluationScoreSection(Long id, Long judgingItemId, int targetScore, int takenScore) {
this.id = id;
this.judgingItemId = judgingItemId;
this.targetScore = targetScore;
this.takenScore = takenScore;
}

public JudgingClass(Long judgingItemId, int targetScore, int takenScore) {
public EvaluationScoreSection(Long judgingItemId, int targetScore, int takenScore) {
this(null, judgingItemId, targetScore, takenScore);
}
}

0 comments on commit 7d8390e

Please sign in to comment.