CfPayorderRefundMapper.java 1014 B

123456789101112131415161718192021222324252627282930
  1. package com.ghsc.partybuild.mapper;
  2. import com.ghsc.partybuild.model.CfPayorderRefund;
  3. import com.ghsc.partybuild.model.CfPayorderRefundExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface CfPayorderRefundMapper {
  7. long countByExample(CfPayorderRefundExample example);
  8. int deleteByExample(CfPayorderRefundExample example);
  9. int deleteByPrimaryKey(String refundId);
  10. int insert(CfPayorderRefund record);
  11. int insertSelective(CfPayorderRefund record);
  12. List<CfPayorderRefund> selectByExample(CfPayorderRefundExample example);
  13. CfPayorderRefund selectByPrimaryKey(String refundId);
  14. int updateByExampleSelective(@Param("record") CfPayorderRefund record, @Param("example") CfPayorderRefundExample example);
  15. int updateByExample(@Param("record") CfPayorderRefund record, @Param("example") CfPayorderRefundExample example);
  16. int updateByPrimaryKeySelective(CfPayorderRefund record);
  17. int updateByPrimaryKey(CfPayorderRefund record);
  18. }