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.

21 lines
654 B

  1. package com.example.demo.sevice;
  2. import com.example.demo.domain.entity.Recharge;
  3. import com.example.demo.domain.vo.RechargeVo;
  4. import com.github.pagehelper.PageInfo;
  5. import org.springframework.transaction.annotation.Transactional;
  6. import java.util.List;
  7. public interface RechargeService {
  8. @Transactional
  9. int add(Recharge recharge) throws Exception;
  10. int edit(Recharge recharge) throws Exception;
  11. Recharge findById(int id) throws Exception;
  12. List<RechargeVo> search(RechargeVo rechargeVo) ;
  13. PageInfo<RechargeVo> searchForPage(Integer pageNum, Integer pageSize, RechargeVo rechargeVo);
  14. int getAllByjwAndup(String jwcode);
  15. }