qushaowei
2023-12-12 707b5af9ed7c12d18cba597e3f2f76671891034b
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
package org.jeecg.modules.eam.service.impl;
 
import org.jeecg.modules.eam.entity.TechnologyStatus;
import org.jeecg.modules.eam.mapper.TechnologyStatusMapper;
import org.jeecg.modules.eam.service.ITechnologyStatusService;
import org.springframework.stereotype.Service;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
import java.util.List;
import java.util.Map;
 
/**
 * @Description: mom_eam_technology_status
 * @Author: jeecg-boot
 * @Date:   2023-12-11
 * @Version: V1.0
 */
@Service
public class TechnologyStatusServiceImpl extends ServiceImpl<TechnologyStatusMapper, TechnologyStatus> implements ITechnologyStatusService {
 
    @Override
    public List<Map<String, Object>> getTechnologyStatusList(String orderId) {
        return this.baseMapper.getTechnologyStatusList(orderId);
    }
}