Fancy
2024-06-20 4837d8e606a630945a8150cd8dff3fb0e48f0784
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.StaDeviceProductionLog;
import org.apache.ibatis.annotations.Mapper;
 
/**
* @author User
* @description 针对表【sta_device_production_log(设备生产日志表)】的数据库操作Mapper
* @createDate 2024-06-20 11:31:20
* @Entity com.dy.pmsGlobal.pojoSta.StaDeviceProductionLog
*/
@Mapper
public interface StaDeviceProductionLogMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(StaDeviceProductionLog record);
 
    int insertSelective(StaDeviceProductionLog record);
 
    StaDeviceProductionLog selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(StaDeviceProductionLog record);
 
    int updateByPrimaryKey(StaDeviceProductionLog record);
 
}