Commit ec133d5c by guominglei

修改参数

parent 5adfb82a
package com.byit.mapper; package com.byit.mapper;
import com.byit.model.FlowStatusSnapshoot; import com.byit.model.FlowStatusSnapshoot;
import org.apache.ibatis.annotations.Param;
import java.util.List; import java.util.List;
...@@ -45,5 +46,5 @@ public interface FlowStatusSnapshootMapper { ...@@ -45,5 +46,5 @@ public interface FlowStatusSnapshootMapper {
* @param endTime * @param endTime
* @return * @return
*/ */
List<FlowStatusSnapshoot> findByTime(Long startTime, Long endTime); List<FlowStatusSnapshoot> findByTime(@Param("startTime")Long startTime, @Param("endTime")Long endTime);
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment