Fancy
2025-01-07 28f6317f7189d5c4a7e64f57dd6c7fc2011f8632
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
package com.dy.pmsGlobal.daoMp;
 
import com.dy.pmsGlobal.pojoMp.MpOpenId;
import org.apache.ibatis.annotations.Mapper;
 
/**
* @author User
* @description 针对表【mp_open_id】的数据库操作Mapper
* @createDate 2024-12-25 17:22:43
* @Entity com.dy.pmsGlobal.pojoMp.MpOpenId
*/
@Mapper
public interface MpOpenIdMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(MpOpenId record);
 
    int insertSelective(MpOpenId record);
 
    MpOpenId selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(MpOpenId record);
 
    int updateByPrimaryKey(MpOpenId record);
 
    MpOpenId getInfoByOpenId(String openid);
}