校验是否为并充订单

This commit is contained in:
Guoqs
2024-11-13 17:06:46 +08:00
parent 5c6e9a5269
commit 3e320cbc89
5 changed files with 69 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import com.jsowell.pile.domain.PileMsgRecord;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.Date;
import java.util.List;
@Repository
@@ -18,5 +19,5 @@ public interface PileMsgRecordMapper {
List<PileMsgRecord> getPileFeedList(@Param("pileSn") String pileSn);
List<PileMsgRecord> getPileFeedListV2(@Param("pileSn") String pileSn, @Param("frameType") String frameType,
@Param("startTime") String startTime, @Param("endTime") String endTime);
@Param("startTime") Date startTime, @Param("endTime") Date endTime);
}