| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.jeecg.modules.eam.entity.InspectionCycle; |
| | | |
| | | import java.util.List; |
| | |
| | | * @return |
| | | */ |
| | | List<Integer> getUsableVersion(); |
| | | |
| | | |
| | | @Select("<script> select dbo.F_GET_SEQ_ID('InspectionCycleNum') </script>") |
| | | public String getInspectionCycleNum(); |
| | | |
| | | public List<InspectionCycle> getInspectionOrder(); |
| | | |
| | | public List<InspectionCycle> getInspectionProject(String inspectionStandardId,String inspectionCycleId); |
| | | } |