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