# coding:utf-8 from tables.fields.bidamount import BidAmountChecker from tables.fields.budget import BudgetChecker class Preprocess(object): """ 预处理接口 """ def __init__(self): self.__pool = dict(bidamount=BidAmountChecker, budget=BudgetChecker) __all__ = [Preprocess]