UserCommentService.java 618 B

123456789101112131415161718192021222324252627
  1. package com.izouma.awesomeadmin.service;
  2. import java.util.*;
  3. import com.izouma.awesomeadmin.dto.Page;
  4. import com.izouma.awesomeadmin.model.UserComment;
  5. /**
  6. * service接口类
  7. */
  8. public interface UserCommentService{
  9. List<UserComment> getUserCommentList(UserComment record);
  10. List<UserComment> getUserCommentByPage(Page page, UserComment record);
  11. UserComment getUserCommentById(String id);
  12. UserComment getUserComment(UserComment record);
  13. boolean createUserComment(UserComment record);
  14. boolean deleteUserComment(UserComment record);
  15. boolean updateUserComment(UserComment record);
  16. }