public_sentiment/web/dao/public_sentiment_comment_dao.py
2024-09-18 13:41:28 +08:00

14 lines
253 B
Python

#!/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