ApplyPaymentMapper.java 992 B

1234567891011121314151617181920212223242526272829303132
  1. package com.idea.oa.apply.mapper;
  2. import com.idea.oa.apply.model.ApplyPayment;
  3. import com.idea.oa.apply.model.ApplyPaymentExample;
  4. import org.apache.ibatis.annotations.Param;
  5. import org.springframework.stereotype.Component;
  6. import java.util.List;
  7. @Component
  8. public interface ApplyPaymentMapper {
  9. long countByExample(ApplyPaymentExample example);
  10. int deleteByExample(ApplyPaymentExample example);
  11. int deleteByPrimaryKey(String id);
  12. int insert(ApplyPayment record);
  13. int insertSelective(ApplyPayment record);
  14. List<ApplyPayment> selectByExample(ApplyPaymentExample example);
  15. ApplyPayment selectByPrimaryKey(String id);
  16. int updateByExampleSelective(@Param("record") ApplyPayment record, @Param("example") ApplyPaymentExample example);
  17. int updateByExample(@Param("record") ApplyPayment record, @Param("example") ApplyPaymentExample example);
  18. int updateByPrimaryKeySelective(ApplyPayment record);
  19. int updateByPrimaryKey(ApplyPayment record);
  20. }