|
@@ -8,6 +8,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* 发动机型号Service业务层处理
|
|
@@ -87,4 +88,9 @@ public class MeasEngineModelServiceImpl implements IMeasEngineModelService {
|
|
|
public int deleteMeasEngineModelById(Long id) {
|
|
|
return measEngineModelMapper.deleteMeasEngineModelById(id);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<Map> getOption() {
|
|
|
+ return measEngineModelMapper.getOption();
|
|
|
+ }
|
|
|
}
|