for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package easytests.core.models;
import easytests.core.entities.SolutionEntity;
import lombok.*;
/**
* @author SingularityA
*/
@Data
public class SolutionModel implements SolutionModelInterface {
private Integer id;
private AnswerModelInterface answer;
private PointModelInterface point;
//private Integer sort;
public void map(SolutionEntity solutionEntity) {
this.setId(solutionEntity.getId());
}