Skip to content

Commit

Permalink
Possible fix for date issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Oct 22, 2024
1 parent a01085f commit 9ec0b14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public interface AssessmentMapper {

AssessmentMapper mapper = Mappers.getMapper(AssessmentMapper.class);

@Mapping(target = "session.sessionID", source = "sessionEntity.sessionID")
@Mapping(target = "sessionID", source = "sessionEntity.sessionID")
Assessment toStructure(AssessmentEntity entity);

@Mapping(target = "sessionEntity.sessionID", source = "session.sessionID")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Assessment extends BaseRequest implements Serializable {
private String assessmentID;

@ReadOnlyProperty
private Session session;
private String sessionID;

@ReadOnlyProperty
private String assessmentTypeCode;
Expand Down

0 comments on commit 9ec0b14

Please sign in to comment.