tfse-admin-api-v0.2/file/TfseFile.py

14 lines
382 B
Python
Raw Normal View History

2022-01-19 15:23:06 +08:00
from file.scripts import company_general_rating_report_by_fid, company_general_rating_certification_by_fid
class TfseFile:
def __init__(self):
self.fid = None
def get_general_report(self):
return company_general_rating_report_by_fid(self.fid)
def get_general_certification(self):
return company_general_rating_certification_by_fid(self.fid)