14 lines
253 B
Python
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
|