Skip to content

Commit 45fa369

Browse files
giacomoaccursiandrea-acampora
authored andcommitted
chore: change path of surgery report package
1 parent 9e1fb25 commit 45fa369

File tree

6 files changed

+9
-15
lines changed

6 files changed

+9
-15
lines changed

src/main/kotlin/application/presenter/api/report/SurgeryReportApiDto.kt

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import application.presenter.api.report.tracking.TrackingInformationApiDto
2121
import kotlinx.serialization.Serializable
2222

2323
/**
24-
* It represents the presentation of a single [entity.report.SurgeryReport] entry.
24+
* It represents the presentation of a single [entity.surgeryreport.report.SurgeryReport] entry.
2525
* The necessary information are the [surgicalProcessID], the [patientId], the [patientName], the [patientSurname],
2626
* the [surgicalProcessDescription] and the [surgeryDate].
2727
*/
@@ -36,7 +36,7 @@ data class SurgeryReportEntry(
3636
)
3737

3838
/**
39-
* It represents the presentation of a [entity.report.SurgeryReport].
39+
* It represents the presentation of a [entity.surgeryreport.report.SurgeryReport].
4040
* The necessary information are: the [surgicalProcessID], the [surgeryDate], the [surgicalProcessDescription],
4141
* the [inChargeHealthProfessionalID], the [patientID], the [roomsInvolved], the [healthcareUser], the [stepData],
4242
* the [consumedImplantableMedicalDevice], the [medicalTechnologyUsageData], the [healthProfessionalTrackingInformation]
@@ -59,7 +59,7 @@ data class SurgeryReportApiDto(
5959
)
6060

6161
/**
62-
* Presenter class for the [entity.report.SurgeryProcessStepAggregateData].
62+
* Presenter class for the [entity.surgeryreport.report.SurgeryProcessStepAggregateData].
6363
* It represents its [startDateTime], [stopDateTime], [patientVitalSignAggregateData] and [environmentalAggregateData].
6464
*/
6565
@Serializable
@@ -69,9 +69,3 @@ data class SurgicalProcessStepAggregateDataApiDto(
6969
val patientVitalSignAggregateData: AggregateDataApiDto<PatientVitalSignsApiDto>,
7070
val environmentalAggregateData: Map<RoomApiDtoType, AggregateDataApiDto<RoomEnvironmentalDataApiDto>>,
7171
)
72-
73-
/**
74-
* Presenter class for the integration of a surgery report with [additionalData].
75-
*/
76-
@Serializable
77-
data class SurgeryReportPatchApiDto(val additionalData: String)

src/main/kotlin/application/presenter/api/report/healthcareuser/HealthcareUserApiDto.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ package application.presenter.api.report.healthcareuser
1111
import kotlinx.serialization.Serializable
1212

1313
/**
14-
* Presenter class to serialize [entity.healthcareuser.HealthcareUser] information.
14+
* Presenter class to serialize [entity.surgeryreport.healthcareuser.HealthcareUser] information.
1515
* The necessary information are the [taxCode], the [name] and the [surname].
1616
*/
1717
@Serializable

src/main/kotlin/application/presenter/api/report/healthcareuser/PatientVitalSignsApiDto.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import application.presenter.api.report.measurements.ValueWithUnit
1212
import kotlinx.serialization.Serializable
1313

1414
/**
15-
* Presenter class to serialize [entity.healthcareuser.PatientVitalSigns].
15+
* Presenter class to serialize [entity.surgeryreport.healthcareuser.PatientVitalSigns].
1616
* It describes the [heartBeat], the [diastolicBloodPressure], the [systolicBloodPressure], the [respiratoryRate],
1717
* the [saturationPercentage] and the [bodyTemperature].
1818
*/

src/main/kotlin/application/presenter/api/report/measurements/AggregateDataApiDto.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ package application.presenter.api.report.measurements
1111
import kotlinx.serialization.Serializable
1212

1313
/**
14-
* Presenter class for the [entity.measurements.AggregateData] class.
14+
* Presenter class for the [entity.surgeryreport.measurements.AggregateData] class.
1515
* It returns the following data: [average], [std], [maximum] and [minimum].
1616
*/
1717
@Serializable

src/main/kotlin/application/presenter/api/report/medicaldevice/ImplantableMedicalDeviceApiDto.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ package application.presenter.api.report.medicaldevice
1111
import kotlinx.serialization.Serializable
1212

1313
/**
14-
* Presenter class for the [entity.medicaldevice.ImplantableMedicalDevice] class.
14+
* Presenter class for the [entity.surgeryreport.medicaldevice.ImplantableMedicalDevice] class.
1515
* It returns: the [id] of the implantable medical device and the [type]
1616
*/
1717
@Serializable
@@ -21,7 +21,7 @@ data class ImplantableMedicalDeviceApiDto(
2121
)
2222

2323
/**
24-
* Presenter enum class to represent [entity.medicaldevice.ImplantableMedicalDeviceType].
24+
* Presenter enum class to represent [entity.surgeryreport.medicaldevice.ImplantableMedicalDeviceType].
2525
*/
2626
enum class ImplantableMedicalDeviceApiDtoType {
2727
/** The Catheter is an implantable medical device type. */

src/main/kotlin/application/presenter/api/report/medicaldevice/MedicalTechnologyApiDto.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ package application.presenter.api.report.medicaldevice
1111
import kotlinx.serialization.Serializable
1212

1313
/**
14-
* Presenter class for the [entity.medicaldevice.MedicalTechnology] class.
14+
* Presenter class for the [entity.surgeryreport.medicaldevice.MedicalTechnology] class.
1515
* It returns: the [id], the [name], the [description], the [type] of the medical technology and moreover
1616
* if it is [inUse].
1717
*/

0 commit comments

Comments
 (0)