com.github.charleslzq.dicom.data.DicomPatientMetaInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dicom-tools Show documentation
Show all versions of dicom-tools Show documentation
some tool to handle dicom file
package com.github.charleslzq.dicom.data
import java.time.LocalDateTime
data class DicomPatientMetaInfo(
var id: String? = null,
var name: String? = null,
var address: String? = null,
var sex: String? = null,
var birthday: String? = null,
var birthTime: String? = null,
var weight: Float? = null,
var idIssuer: String? = null,
var position: String? = null,
var pregnancyStatus: Int? = null,
val updateTime: MutableMap = emptyMap().toMutableMap()
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy