1234567891011121314151617 |
- package com.hssx.ysofficial.service;
- import com.hssx.ysofficial.entity.Comment;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.hssx.ysofficial.utility.HttpRespMsg;
- /**
- * <p>
- * the comments left by customers 服务类
- * </p>
- *
- * @author Reiskuchen
- * @since 2019-10-22
- */
- public interface CommentService extends IService<Comment> {
- HttpRespMsg getComments();
- }
|