11 lines
276 B
Plaintext
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) {
|
||
|
}
|
||
|
}
|