刘小明
2024-06-19 d05dd9bd1e32e95108b0a299ccf71459c685c222
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
package com.dy.pmsGlobal.daoSta;
 
import com.dy.pmsGlobal.pojoSta.StaWipSnEx;
import org.apache.ibatis.annotations.Mapper;
 
/**
* @author User
* @description 针对表【sta_wip_sn_ex(设备关联表)】的数据库操作Mapper
* @createDate 2024-06-19 14:21:17
* @Entity com.dy.pmsGlobal.pojoSta.StaWipSnEx
*/
@Mapper
public interface StaWipSnExMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(StaWipSnEx record);
 
    int insertSelective(StaWipSnEx record);
 
    StaWipSnEx selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(StaWipSnEx record);
 
    int updateByPrimaryKey(StaWipSnEx record);
 
}