| | |
| | | package com.lf.server.service.show; |
| | | |
| | | import com.lf.server.entity.bs.MpipelineEntity; |
| | | import com.lf.server.entity.show.OneMapEntity; |
| | | import com.lf.server.mapper.show.OneMapMapper; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | |
| | | */ |
| | | @Service |
| | | public class OneMapService implements OneMapMapper { |
| | | @Autowired |
| | | @Resource |
| | | OneMapMapper aMapOfPipelineMapper; |
| | | |
| | | /** |
| | |
| | | } |
| | | |
| | | /** |
| | | * 统计项目参观 |
| | | * |
| | | * @return {@link List}<{@link String}> |
| | | */ |
| | | @Override |
| | | public List<String> countProjectTour(MpipelineEntity mpipelineEntity) { |
| | | return aMapOfPipelineMapper.countProjectTour(mpipelineEntity); |
| | | } |
| | | |
| | | /** |
| | | * 选择项目参观列表 |
| | | * |
| | | * @return {@link List}<{@link String}> |
| | |
| | | public List<String> selectProjectTour() { |
| | | return aMapOfPipelineMapper.selectProjectTour(); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 选择项目类型 |
| | |
| | | * 选择项目信息 |
| | | * 查询项目信息 |
| | | * |
| | | * @param projectName 项目名称 |
| | | * @param projectCode 项目编码 |
| | | * @return {@link List}<{@link String}> |
| | | */ |
| | | @Override |