Fancy
2025-01-07 36fdd5fcdd57dc67c7728c572b8423bc0d3c9c88
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);
}