__init__.py 306 B

123456789101112131415
  1. # coding:utf-8
  2. from tables.fields.bidamount import BidAmountChecker
  3. from tables.fields.budget import BudgetChecker
  4. class Preprocess(object):
  5. """
  6. 预处理接口
  7. """
  8. def __init__(self):
  9. self.__pool = dict(bidamount=BidAmountChecker, budget=BudgetChecker)
  10. __all__ = [Preprocess]