自动化立体仓库 - WMS系统
pang.jiabao
昨天 f8193b239dac7276cb9203af51ad9b424fa5e90d
src/main/java/com/zy/asrs/mapper/ManPakOutMapper.java
@@ -5,6 +5,7 @@
import com.zy.asrs.entity.param.PakOutDTO;
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.Date;
@@ -16,7 +17,12 @@
    List<PakOutDTO> selectPakOut(@Param("docnum") String docnum,@Param("stime") Date stime, @Param("etime") Date etime, @Param("curr") Integer curr, @Param("limit") Integer limit);
    List<PakOutDTO> selectPakOut(@Param("docnum") String docnum,@Param("stime") Date stime, @Param("etime") Date etime, @Param("curr") Integer curr, @Param("limit") Integer limit,
                                 @Param("userId") Long userId, @Param("custName") String custName, @Param("roleId") Long roleId);
    int selectPakOutCount(@Param("docnum") String docnum,@Param("stime") Date stime, @Param("etime") Date etime,@Param("curr") Integer curr,@Param("limit") Integer limit);
    int selectPakOutCount(@Param("docnum") String docnum,@Param("stime") Date stime, @Param("etime") Date etime,@Param("curr") Integer curr,@Param("limit") Integer limit,
                          @Param("userId") Long userId, @Param("custName") String custName, @Param("roleId") Long roleId);
    @Select("SELECT SUM(anfme) FROM man_pakout WHERE specs >= #{startStr} AND specs < #{endStr}")
    long maxWeightPerHour(@Param("startStr") String startStr,@Param("endStr") String endStr);
}