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

changed datatype of fields #22

Merged
merged 1 commit into from
Jul 8, 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
Original file line number Diff line number Diff line change
Expand Up @@ -45,37 +45,37 @@ public class ImpuritiesSolutionTable extends ImpuritiesCommonData {
public Long id;

@Column(name = "SOLUTION_TIME")
public String solutionTime;
public Double solutionTime;

@Column(name = "SOLUTION_A_PERCENT")
public String solutionAPercent;
public Double solutionAPercent;

@Column(name = "SOLUTION_B_PERCENT")
public String solutionBPercent;
public Double solutionBPercent;

@Column(name = "SOLUTION_C_PERCENT")
public String solutionCPercent;
public Double solutionCPercent;

@Column(name = "SOLUTION_D_PERCENT")
public String solutionDPercent;
public Double solutionDPercent;

@Column(name = "SOLUTION_E_PERCENT")
public String solutionEPercent;
public Double solutionEPercent;

@Column(name = "SOLUTION_F_PERCENT")
public String solutionFPercent;
public Double solutionFPercent;

@Column(name = "SOLUTION_G_PERCENT")
public String solutionGPercent;
public Double solutionGPercent;

@Column(name = "SOLUTION_H_PERCENT")
public String solutionHPercent;
public Double solutionHPercent;

@Column(name = "SOLUTION_I_PERCENT")
public String solutionIPercent;
public Double solutionIPercent;

@Column(name = "SOLUTION_J_PERCENT")
public String solutionJPercent;
public Double solutionJPercent;

// Set PARENT Class, ImpuritiesTesting
@Indexable(indexed = false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ public void setImpuritiesElutionSolventList(List<ImpuritiesElutionSolvent> impur

// Set CHILDREN Class, ImpuritiesSolution
@ToString.Exclude
@OrderBy("solution_letter asc")
@LazyCollection(LazyCollectionOption.FALSE)
@OneToMany(fetch=FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "owner")
public List<ImpuritiesSolution> impuritiesSolutionList = new ArrayList<ImpuritiesSolution>();
Expand Down
Loading