123456789101112131415161718192021222324252627282930 |
- package com.ghsc.partybuild.mapper;
- import com.ghsc.partybuild.model.CfPayorderRefund;
- import com.ghsc.partybuild.model.CfPayorderRefundExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface CfPayorderRefundMapper {
- long countByExample(CfPayorderRefundExample example);
- int deleteByExample(CfPayorderRefundExample example);
- int deleteByPrimaryKey(String refundId);
- int insert(CfPayorderRefund record);
- int insertSelective(CfPayorderRefund record);
- List<CfPayorderRefund> selectByExample(CfPayorderRefundExample example);
- CfPayorderRefund selectByPrimaryKey(String refundId);
- int updateByExampleSelective(@Param("record") CfPayorderRefund record, @Param("example") CfPayorderRefundExample example);
- int updateByExample(@Param("record") CfPayorderRefund record, @Param("example") CfPayorderRefundExample example);
- int updateByPrimaryKeySelective(CfPayorderRefund record);
- int updateByPrimaryKey(CfPayorderRefund record);
- }
|