|
|
@ -20,34 +20,36 @@ public interface LogisticsCarRecordDao extends LogisticsCarRecordMapper { |
|
|
|
* @param warehouseId 仓库id |
|
|
|
* @return 车辆吞进量 |
|
|
|
*/ |
|
|
|
Long selCarOfIn(Long warehouseId); |
|
|
|
Long selCarOfIn(@Param("warehouseId") Long warehouseId); |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询车辆吐出量 |
|
|
|
* @param warehouseId 仓库id |
|
|
|
* @return 车辆吐出量 |
|
|
|
*/ |
|
|
|
Long selCarOfOut(Long warehouseId); |
|
|
|
Long selCarOfOut(@Param("warehouseId") Long warehouseId); |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询入库吨数 |
|
|
|
* @param warehouseId 仓库id |
|
|
|
* @return 入库吨数 |
|
|
|
*/ |
|
|
|
Long selWeightOfIn(Long warehouseId); |
|
|
|
Long selWeightOfIn(@Param("warehouseId") Long warehouseId); |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询出货吨数 |
|
|
|
* @param warehouseId 仓库id |
|
|
|
* @return 出货吨数 |
|
|
|
*/ |
|
|
|
Long selWeightOfOut(Long warehouseId); |
|
|
|
Long selWeightOfOut(@Param("warehouseId") Long warehouseId); |
|
|
|
|
|
|
|
/** |
|
|
|
* 根据时间查询车辆吞进量 |
|
|
|
* @param queryType 查询类型 |
|
|
|
* @param startTime 开始时间 |
|
|
|
* @param endTime 结束时间 |
|
|
|
* @param nowDate 现在的时间 |
|
|
|
* @param countArr 查询的天数 |
|
|
|
* @return 该时间车辆吞进量 |
|
|
|
*/ |
|
|
|
List<MbpsVo.CarOfInByTime> selCarOfInByTime(@Param("queryType") Byte queryType, @Param("startTime") Long startTime, @Param("endTime") Long endTime,@Param("countArr") String[] countArr,@Param("nowDate") String nowDate); |
|
|
@ -57,6 +59,8 @@ public interface LogisticsCarRecordDao extends LogisticsCarRecordMapper { |
|
|
|
*@param queryType 查询类型 |
|
|
|
* @param startTime 开始时间 |
|
|
|
* @param endTime 结束时间 |
|
|
|
* @param nowDate 现在的时间 |
|
|
|
* @param countArr 查询的天数 |
|
|
|
* @return 该时间车辆吐出量 |
|
|
|
*/ |
|
|
|
List<MbpsVo.CarOfOutByTime> selCarOfOutByTime(@Param("queryType") Byte queryType,@Param("startTime") Long startTime,@Param("endTime") Long endTime,@Param("countArr") String[] countArr,@Param("nowDate") String nowDate); |
|
|
@ -66,6 +70,8 @@ public interface LogisticsCarRecordDao extends LogisticsCarRecordMapper { |
|
|
|
* @param queryType 查询类型 |
|
|
|
* @param startTime 开始时间 |
|
|
|
* @param endTime 结束时间 |
|
|
|
* @param nowDate 现在的时间 |
|
|
|
* @param countArr 查询的天数 |
|
|
|
* @return 该时间入货量 |
|
|
|
*/ |
|
|
|
List<MbpsVo.WeightOfInByTime> selWeightOfInByTime(@Param("queryType") Byte queryType,@Param("startTime") Long startTime,@Param("endTime") Long endTime,@Param("countArr") String[] countArr,@Param("nowDate") String nowDate); |
|
|
@ -75,6 +81,8 @@ public interface LogisticsCarRecordDao extends LogisticsCarRecordMapper { |
|
|
|
* @param queryType 查询类型 |
|
|
|
* @param startTime 开始时间 |
|
|
|
* @param endTime 结束时间 |
|
|
|
* @param nowDate 现在的时间 |
|
|
|
* @param countArr 查询的天数 |
|
|
|
* @return 该时间车辆出货量 |
|
|
|
*/ |
|
|
|
List<MbpsVo.WeightOfOutByTime> selWeightOfOutByTime(@Param("queryType") Byte queryType,@Param("startTime") Long startTime,@Param("endTime") Long endTime,@Param("countArr") String[] countArr,@Param("nowDate") String nowDate); |
|
|
|