openspg/python/medical/schema/medical1_schema_helper.py

78 lines
1.5 KiB
Python
Raw Normal View History

2023-12-19 15:32:58 +08:00
# 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"
2023-12-19 16:13:30 +08:00
alias = "alias"
2023-12-19 15:32:58 +08:00
def __init__(self):
pass
class Disease:
__typename__ = "Medical1.Disease"
description = "description"
id = "id"
name = "name"
applicableDrug = "applicableDrug"
2023-12-21 18:09:13 +08:00
diseaseSite = "diseaseSite"
2023-12-19 15:32:58 +08:00
commonSymptom = "commonSymptom"
2023-12-19 16:13:30 +08:00
department = "department"
2023-12-21 18:09:13 +08:00
complication = "complication"
2023-12-19 15:32:58 +08:00
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"
2023-12-19 16:13:30 +08:00
stdId = "stdId"
2023-12-19 15:32:58 +08:00
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