ohctechv3/.svn/pristine/0b/0b8566d1c5ce38f76c982ece8d474676857cf001.svn-base
2024-10-28 15:03:36 +05:30

11 lines
276 B
Plaintext

package com.healthcare.ohctech.dto;
import java.util.Map;
public record PatientExercisePlanDto(
Long id, Long consultationId, Map<Long, ExercisePlanValue> exercisePlanValues
) {
public record ExercisePlanValue(Double value, String remark, Long unitId) {
}
}