public_sentiment/web/dao/public_sentiment_comment_dao.py

14 lines
253 B
Python
Raw Normal View History

2024-09-18 13:38:24 +08:00
#!/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