コード例 #1
0
ファイル: airplane.py プロジェクト: cpsoft/AM2012
	def __init__(self, database):
		DbModel.__init__(self, database)
		mapper(AirPlane, self.table)
		self.datas = self.session.query(AirPlane).all()
		return
コード例 #2
0
ファイル: aircompany.py プロジェクト: cpsoft/AM2012
	def __init__(self, database):
		DbModel.__init__(self, database)
		mapper(AirCompany, self.table)
		self.datas = self.session.query(AirCompany).all()