You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

50 lines
817 B

  1. package com.simple.service;
  2. import java.util.*;
  3. import com.github.pagehelper.PageInfo;
  4. import com.simple.common.ResultData;
  5. import com.simple.domain.po.WxMsgModel;
  6. public interface WxMsgModelService {
  7. /**
  8. * 根据实体查询分页列表
  9. *
  10. * @param record
  11. * @param offset
  12. * @param limit
  13. * @return
  14. */
  15. PageInfo<WxMsgModel> listAsPage(WxMsgModel record, Integer pageIndex, Integer pageSize);
  16. /**
  17. * 根据Id获得实体
  18. *
  19. * @param id
  20. * @return
  21. */
  22. WxMsgModel getById(Long id);
  23. /**
  24. * 保存或更新实体
  25. *
  26. * @param record
  27. */
  28. ResultData saveOrUpdate(WxMsgModel record);
  29. /**
  30. * 根据Id删除实体
  31. *
  32. * @param id
  33. */
  34. void deleteById(Long id);
  35. ResultData getmodellist();
  36. }