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

14 lines
382 B
Python
Raw Normal View History

2022-01-13 14:14:55 +08:00
from file.scripts import company_general_rating_report_by_fid, company_general_rating_certification_by_fid
2021-12-17 17:01:32 +08:00
class TfseFile:
def __init__(self):
self.fid = None
def get_general_report(self):
return company_general_rating_report_by_fid(self.fid)
2022-01-13 14:14:55 +08:00
def get_general_certification(self):
return company_general_rating_certification_by_fid(self.fid)