| | |
| | | package com.zy.asrs.mapper; |
| | | |
| | | import com.zy.asrs.entity.*; |
| | | import com.zy.asrs.entity.param.ViewLocDailyLogParam; |
| | | import com.zy.asrs.entity.param.ViewOrderParam; |
| | | import com.zy.asrs.entity.param.VwLocDetlSummaryParam; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | |
| | | Integer selectWorkCountOutSum(String matnr, @Param("start") String startTime, @Param("end") String endTime); |
| | | |
| | | List<ViewOrderParam> getAsrOrderView(@Param("ymdS") String startTime, @Param("ymdD") String endTime); |
| | | List<ViewLocDailyLogParam> getAsrLocDailyLogO(@Param("areaId")int areaId, @Param("ymdS") String startTime, @Param("ymdD") String endTime); |
| | | List<ViewLocDailyLogParam> getAsrLocDailyLog2(@Param("areaId")int areaId, @Param("ymdS") String startTime, @Param("ymdD") String endTime); |
| | | List<VwLocDetlSummaryParam> getVwLocDetlSummaryParam(@Param("areaId")int areaId,@Param("overDayNum")int overDayNum, @Param("curr") Integer curr, @Param("limit") Integer limit); |
| | | void insertAsrLocDailyLog(); |
| | | } |