Fancy
2024-12-25 cf510b3a38f20d5dba5b7a0b71f097753b3ca409
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
package com.dy.pmsGlobal.daoMp;
 
import com.dy.pmsGlobal.pojoMp.MpOpenId;
 
/**
* @author User
* @description 针对表【mp_open_id】的数据库操作Mapper
* @createDate 2024-12-25 17:22:43
* @Entity com.dy.pmsGlobal.pojoMp.MpOpenId
*/
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);
 
}