刘小明
2024-06-19 0d9f926ceac74c9fba899f4b76d113fd281579a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.dy.pmsGlobal.daoWo;
 
import com.dy.pmsGlobal.pojoWo.WoWipSnEx;
 
/**
* @description 针对表【wo_wip_sn_ex(设备关联表)】的数据库操作Mapper
* @createDate 2024-06-19 10:21:40
* @Entity com.dy.pmsGlobal.pojoWo.WoWipSnEx
*/
public interface WoWipSnExMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(WoWipSnEx record);
 
    int insertSelective(WoWipSnEx record);
 
    WoWipSnEx selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(WoWipSnEx record);
 
    int updateByPrimaryKey(WoWipSnEx record);
 
}