mirror of
https://github.com/dnpm-dip/mv64e-mtb-dto-java.git
synced 2025-07-01 18:22:54 +00:00
31 lines
980 B
Java
31 lines
980 B
Java
package dev.pcvolkmer.mv64e.mtb;
|
|
|
|
import com.fasterxml.jackson.annotation.*;
|
|
|
|
public class CodingProteinExpressionResult {
|
|
private ProteinExpressionResultCode code;
|
|
private String display;
|
|
private String system;
|
|
private String version;
|
|
|
|
@JsonProperty("code")
|
|
public ProteinExpressionResultCode getCode() { return code; }
|
|
@JsonProperty("code")
|
|
public void setCode(ProteinExpressionResultCode value) { this.code = value; }
|
|
|
|
@JsonProperty("display")
|
|
public String getDisplay() { return display; }
|
|
@JsonProperty("display")
|
|
public void setDisplay(String value) { this.display = value; }
|
|
|
|
@JsonProperty("system")
|
|
public String getSystem() { return system; }
|
|
@JsonProperty("system")
|
|
public void setSystem(String value) { this.system = value; }
|
|
|
|
@JsonProperty("version")
|
|
public String getVersion() { return version; }
|
|
@JsonProperty("version")
|
|
public void setVersion(String value) { this.version = value; }
|
|
}
|