| | |
| | | package com.zy.asrs.mapper; |
| | | |
| | | import com.zy.asrs.entity.*; |
| | | import com.zy.asrs.entity.result.CheckReport; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Mapper |
| | | @Repository |
| | |
| | | Integer selectWorkCountInSum(String matnr, @Param("start") String startTime, @Param("end") String endTime); |
| | | |
| | | Integer selectWorkCountOutSum(String matnr, @Param("start") String startTime, @Param("end") String endTime); |
| | | |
| | | List<CheckReport> selectCheckReport(Map<String, Object> param); |
| | | |
| | | Integer selectCheckReportCount(Map<String, Object> param); |
| | | } |