yangys
2024-09-04 04c57331cf84c8f606c2838dcb6fe5463fb9b68c
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
package com.qianwen.smartman.modules.tdengine.mapper;
 
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
import java.util.List;
import com.qianwen.smartman.common.constant.FmsConstant;
import com.qianwen.smartman.modules.mdc.entity.SuperAggregateOutput;
import com.qianwen.smartman.modules.tdengine.entity.WorkstationAggregateCountData;
 
@DS("tdengine")
@InterceptorIgnore(tenantLine = FmsConstant.AUTOMATIC)
 
public interface WorkstationAggregateCountMapper extends WorkstationDynamicCollectMapper<WorkstationAggregateCountData> {
    @Override // org.springblade.modules.tdengine.mapper.WorkstationDynamicCollectMapper
    boolean deleteSuperTable(Long workstationId, String usageCode);
 
    @Override // org.springblade.modules.tdengine.mapper.WorkstationDynamicCollectMapper
    boolean deleteTable(Long workstationId, String usageCode);
 
    @Override // org.springblade.modules.tdengine.mapper.WorkstationDynamicCollectMapper
    List<SuperAggregateOutput> getShiftOutput(List<Long> workstationIds, Integer shiftIndex, Integer factoryDate, String usageCode);
 
    @Override // org.springblade.modules.tdengine.mapper.WorkstationDynamicCollectMapper
    List<SuperAggregateOutput> getOutputDataByWorkstationAndFactoryDate(Long workstationId, String startDate, String endDate, String usageCode);
}