| | |
| | | import com.doumee.dao.web.dto.CommentDTO; |
| | | import com.doumee.dao.web.dto.activity.ActivityCommentDTO; |
| | | import com.doumee.dao.web.dto.activity.ActivityReplyCommentDTO; |
| | | import com.doumee.dao.web.request.CommentApplyRequest; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | * @param comment 实体对象 |
| | | * @return Integer |
| | | */ |
| | | Integer create(Comment comment,Integer memberId ); |
| | | Comment apply(CommentApplyRequest comment, Integer memberId); |
| | | |
| | | /** |
| | | * 主键删除 |
| | |
| | | * @param comment 实体对象 |
| | | * @return long |
| | | */ |
| | | Integer count(Comment comment); |
| | | Long count(Comment comment); |
| | | |
| | | |
| | | Integer count(Date start, Date end, Integer memberId); |
| | | Long count(Date start, Date end, Integer memberId); |
| | | |
| | | |
| | | /** |