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);
|
}
|