111
k94314517
2023-08-16 6b656dae5760b0151757f5f82ef756c48f53124c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package doumeemes.dao.ext;
 
import doumeemes.dao.business.model.Procedures;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import doumeemes.dao.ext.vo.ProceduresExtListVO;
import doumeemes.dao.ext.dto.QueryProceduresExtDTO;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface ProceduresExtMapper extends BaseMapper<Procedures> {
 
    /**
     * 管理页面查询
     * @author 江蹄蹄
     * @date 2022/04/20 10:57
     */
    List<ProceduresExtListVO> selectList(QueryProceduresExtDTO dto);
 
    List<ProceduresExtListVO> getGYListByCondition(@Param("routeId") Integer routeId);
 
    List<ProceduresExtListVO> getListByMaterialId(@Param("materialId") Integer materialId);
 
}