package com.nova.sankuai.infra.mapper;
|
|
import com.nova.sankuai.domain.entity.AlipayChannelRecord;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
@Mapper
|
public interface AlipayChannelRecordMapper {
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table alipay_channel_record
|
*
|
* @mbg.generated
|
*/
|
int deleteByPrimaryKey(Long id);
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table alipay_channel_record
|
*
|
* @mbg.generated
|
*/
|
int insert(AlipayChannelRecord row);
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table alipay_channel_record
|
*
|
* @mbg.generated
|
*/
|
int insertSelective(AlipayChannelRecord row);
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table alipay_channel_record
|
*
|
* @mbg.generated
|
*/
|
AlipayChannelRecord selectByPrimaryKey(Long id);
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table alipay_channel_record
|
*
|
* @mbg.generated
|
*/
|
int updateByPrimaryKeySelective(AlipayChannelRecord row);
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table alipay_channel_record
|
*
|
* @mbg.generated
|
*/
|
int updateByPrimaryKey(AlipayChannelRecord row);
|
|
AlipayChannelRecord selectByChannelIdAndStatus(@Param("channelId") String channelId,
|
@Param("status") String status);
|
}
|