zhoushihao
2025-03-15 5a7683e98e626cba3b52fd621b4d5340e16b6f2a
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
package com.mes.pp.service;
 
import com.mes.pp.entity.FlowCard;
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.pp.entity.dto.FlowCardDTO;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author wu
 * @since 2024-08-07
 */
public interface FlowCardService extends IService<FlowCard> {
 
    List<Map<String, Object>> selectProject(String processId, Integer technologyNumber);
 
    List<Map<String, Object>> selectFlowCard(String processId, Integer technologyNumber);
 
    List<Map<String, Object>> selectLabel(String processId, Integer technologyNumber);
 
    List<FlowCardDTO> flowCardReportForms(String orderId);
}