| | |
| | | |
| | | import com.javaweb.common.utils.DateUtils; |
| | | import com.javaweb.common.utils.IdGenerate; |
| | | import com.javaweb.geo.vo.DrillDateVo; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.javaweb.geo.mapper.HoleLogMapper; |
| | |
| | | public int deleteHoleLogById(String id) { |
| | | return holeLogMapper.deleteHoleLogById(id); |
| | | } |
| | | |
| | | /** |
| | | * 统计最近10天进尺量 |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<DrillDateVo> SUMHoleLog() { |
| | | return holeLogMapper.SUMHoleLog(); |
| | | } |
| | | /** |
| | | * 统计项目的最近10天进尺量 |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<DrillDateVo> SUMProjectHoleLog(HoleLog holeLog) { |
| | | return holeLogMapper.SUMProjectHoleLog(holeLog); |
| | | } |
| | | } |