Air
2024-11-04 cb3b3801255082c53145bd752230339eae5d3e5a
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
package com.nova.sankuai.infra.mapper;
 
import com.nova.sankuai.domain.entity.UnionloginRelay;
 
public interface UnionloginRelayMapper {
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table unionlogin_relay
     *
     * @mbg.generated
     */
    int deleteByPrimaryKey(Integer id);
 
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table unionlogin_relay
     *
     * @mbg.generated
     */
    int insert(UnionloginRelay row);
 
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table unionlogin_relay
     *
     * @mbg.generated
     */
    int insertSelective(UnionloginRelay row);
 
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table unionlogin_relay
     *
     * @mbg.generated
     */
    UnionloginRelay selectByPrimaryKey(Integer id);
 
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table unionlogin_relay
     *
     * @mbg.generated
     */
    int updateByPrimaryKeySelective(UnionloginRelay row);
 
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table unionlogin_relay
     *
     * @mbg.generated
     */
    int updateByPrimaryKey(UnionloginRelay row);
 
    UnionloginRelay selectByAppId(String appId);
}