Skip to content

Commit

Permalink
Merge pull request #13 from ncats/archUpdate
Browse files Browse the repository at this point in the history
updated field datatype
  • Loading branch information
ChemMitch authored Aug 20, 2024
2 parents b2e1979 + 9bf9a4f commit 7845af5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class InvitroAssayResult extends InvitroPharmacologyCommanData {
public String ligandSubstrateConcentrationUnits;

@Column(name = "PLASMA_PROTEIN_ADDED")
public String plasmaProteinAdded;
public Boolean plasmaProteinAdded;

@Column(name = "PROTEIN")
public String protein;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ public class InvitroSummary extends InvitroPharmacologyCommanData {
public String resultType;

@Column(name="RESULT_VALUE_AVERAGE")
public String resultValueAverage;
public Double resultValueAverage;

@Column(name="RESULT_VALUE_LOW")
public String resultValueLow;
public Double resultValueLow;

@Column(name="RESULT_VALUE_HIGH")
public String resultValueHigh;
public Double resultValueHigh;

@Column(name="RESULT_VALUE_UNITS")
public String resultValueUnits;
Expand Down

0 comments on commit 7845af5

Please sign in to comment.