ZengTao
2025-11-14 0c86561c023aa79914aa1f494b2a91ad5c38b38f
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
28
29
30
31
package com.mes.damage.mapper;
 
import com.baomidou.dynamic.datasource.annotation.DS;
import com.github.yulichang.base.MPJBaseMapper;
import com.mes.damage.entity.Damage;
import com.mes.damage.entity.dto.DamageDTO;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author wu
 * @since 2024-06-13
 */
@DS("northGlassMes")
public interface DamageMapper extends MPJBaseMapper<Damage> {
 
    List<Damage> queryUnTempByFlowCardId(@Param("flowCardId") String flowCardId);
 
    List<DamageDTO> selectDamageList(
            @Param("startTime") String startTime,
            @Param("endTime") String endTime,
            @Param("type") int type,
            @Param("status") int status,
            @Param("workingProcedure") String workingProcedure
    );
}