All checks were successful
CI fuzzy controller / container-test-job (push) Successful in 1m3s
30 lines
564 B
Java
30 lines
564 B
Java
package ru.ulstu.fc.rule.model;
|
|
|
|
import jakarta.persistence.Entity;
|
|
import jakarta.persistence.ManyToOne;
|
|
import ru.ulstu.fc.core.model.BaseEntity;
|
|
|
|
|
|
public class Consequent extends BaseEntity {
|
|
@ManyToOne
|
|
private Variable variable;
|
|
private String value;
|
|
|
|
public Variable getVariable() {
|
|
return variable;
|
|
}
|
|
|
|
public void setVariable(Variable variable) {
|
|
this.variable = variable;
|
|
}
|
|
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
}
|