RefundApplicationMapper.java 877 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.izouma.awesomeadmin.dao;
  2. import com.izouma.awesomeadmin.model.RefundApplication;
  3. import org.springframework.stereotype.Repository;
  4. import java.util.List;
  5. import java.util.Map;
  6. /**
  7. * Dao接口
  8. */
  9. @Repository("com.zoumaframe.dao.RefundApplicationMapper")
  10. public interface RefundApplicationMapper{
  11. int deleteByPrimaryKey(Integer id);
  12. int insertSelective(RefundApplication record);
  13. RefundApplication selectByPrimaryKey(Integer id);
  14. int updateByPrimaryKeySelective(RefundApplication record);
  15. List<RefundApplication> queryAllRefundApplication(RefundApplication record);
  16. List<RefundApplication> queryRefundApplicationByPage(Map<String, Object> parameter);
  17. int delete(RefundApplication record);
  18. RefundApplication queryRefundApplication(RefundApplication record);
  19. List<RefundApplication> query(RefundApplication record);
  20. }