CommonService.java 366 B

12345678910111213141516171819202122232425
  1. package com.goafanti.sc.service;
  2. import com.goafanti.common.model.ScMessage;
  3. import com.goafanti.core.mybatis.page.Pagination;
  4. import com.goafanti.sc.bo.ScMessageListBo;
  5. public interface CommonService {
  6. int addMessage(ScMessage s);
  7. Pagination<ScMessageListBo> listMessage(String id, Integer pageSize, Integer pageNo);
  8. }