XiaoRuby
2023-09-01 86adbb1544142dcfb48333dade822f81640607a6
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
32
package com.yuanchu.mom.service;
 
import com.yuanchu.mom.pojo.Technology;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author 江苏鵷雏网络科技有限公司
 * @since 2023-07-31
 */
public interface TechnologyService extends IService<Technology> {
 
    /**
     * 根据型号id查询版本
     * @return
     */
    List<Integer> selectVerByTec(Integer specificationsId);
 
    /**
     * 右侧数据展示-->工艺路线
     * @param specificationsId 型号id
     * @param version 版本
     * @return
     */
    List<Map<String,Object>> selectAllTec(Integer specificationsId, Integer version,String message);
}