#!/usr/bin/env python # -*- coding: utf-8 -*- from web.dao.base_dao import BaseDao from web.models import PublicSentimentComment class PublicSentimentCommentDao(BaseDao): """ Comment的dao类 """ model_class = PublicSentimentComment