刘小明
2024-09-03 b5a3c0f6823d17d4acd97545cee3556a07f09865
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dy.pmsGlobal.daoSta;
 
import com.dy.pmsGlobal.pojoSta.StaDeviceProductionLogPast;
import org.apache.ibatis.annotations.Mapper;
 
/**
* @author User
* @description 针对表【sta_device_production_log_past(过往设备生产日志表,存储历史日志数据)】的数据库操作Mapper
* @createDate 2024-07-13 10:34:59
* @Entity com.dy.pmsGlobal.pojoSta.StaDeviceProductionLogPast
*/
@Mapper
public interface StaDeviceProductionLogPastMapper {
 
    int insertIntoPastLogs();
    int deleteFromLogTable();
 
    StaDeviceProductionLogPast selectByPrimaryKey(Long id);
 
    Long countLastDayLogs();
 
//    void createNewTable(String newTableName);
}