package com.idea.oa.apply.mapper; import com.idea.oa.apply.model.ApplyPaymentSettle; import com.idea.oa.apply.model.ApplyPaymentSettleExample; import java.util.List; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Component; @Component public interface ApplyPaymentSettleMapper { long countByExample(ApplyPaymentSettleExample example); int deleteByExample(ApplyPaymentSettleExample example); int deleteByPrimaryKey(String id); int insert(ApplyPaymentSettle record); int insertSelective(ApplyPaymentSettle record); List selectByExample(ApplyPaymentSettleExample example); ApplyPaymentSettle selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") ApplyPaymentSettle record, @Param("example") ApplyPaymentSettleExample example); int updateByExample(@Param("record") ApplyPaymentSettle record, @Param("example") ApplyPaymentSettleExample example); int updateByPrimaryKeySelective(ApplyPaymentSettle record); int updateByPrimaryKey(ApplyPaymentSettle record); }