CommentService.java 396 B

1234567891011121314151617
  1. package com.hssx.ysofficial.service;
  2. import com.hssx.ysofficial.entity.Comment;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.hssx.ysofficial.utility.HttpRespMsg;
  5. /**
  6. * <p>
  7. * the comments left by customers 服务类
  8. * </p>
  9. *
  10. * @author Reiskuchen
  11. * @since 2019-10-22
  12. */
  13. public interface CommentService extends IService<Comment> {
  14. HttpRespMsg getComments();
  15. }