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

14 lines
384 B
Python
Raw Normal View History

2022-02-15 11:04:55 +08:00
from file.file_impl 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)