mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-08-03 14:32:09 +00:00
78 lines
1.5 KiB
Python
78 lines
1.5 KiB
Python
# ATTENTION!
|
|
# This file is generated by Schema automatically, it will be refreshed after schema has been committed
|
|
# PLEASE DO NOT MODIFY THIS FILE!!!
|
|
#
|
|
|
|
class Medical1:
|
|
def __init__(self):
|
|
self.BodyPart = self.BodyPart()
|
|
self.Disease = self.Disease()
|
|
self.Drug = self.Drug()
|
|
self.HospitalDepartment = self.HospitalDepartment()
|
|
self.Indicator = self.Indicator()
|
|
self.Symptom = self.Symptom()
|
|
|
|
class BodyPart:
|
|
__typename__ = "Medical1.BodyPart"
|
|
description = "description"
|
|
id = "id"
|
|
name = "name"
|
|
stdId = "stdId"
|
|
alias = "alias"
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
class Disease:
|
|
__typename__ = "Medical1.Disease"
|
|
description = "description"
|
|
id = "id"
|
|
name = "name"
|
|
applicableDrug = "applicableDrug"
|
|
diseaseSite = "diseaseSite"
|
|
commonSymptom = "commonSymptom"
|
|
department = "department"
|
|
complication = "complication"
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
class Drug:
|
|
__typename__ = "Medical1.Drug"
|
|
description = "description"
|
|
id = "id"
|
|
name = "name"
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
class HospitalDepartment:
|
|
__typename__ = "Medical1.HospitalDepartment"
|
|
description = "description"
|
|
id = "id"
|
|
name = "name"
|
|
alias = "alias"
|
|
stdId = "stdId"
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
class Indicator:
|
|
__typename__ = "Medical1.Indicator"
|
|
description = "description"
|
|
id = "id"
|
|
name = "name"
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
class Symptom:
|
|
__typename__ = "Medical1.Symptom"
|
|
description = "description"
|
|
id = "id"
|
|
name = "name"
|
|
|
|
def __init__(self):
|
|
pass
|
|
|