def get_scene_raw(scene_id):
scene_type = get_scene_type()
try:
scene = Entity.get_by(
entity_type_id=scene_type["id"],
id=scene_id
)
except StatementError:
raise SequenceNotFoundException
if scene is None:
raise SceneNotFoundException
return scene
评论列表
文章目录