myjf007
2024-11-04 627b61d17da1dbf02c0363c659b728627dd42890
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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);
}