耗材记录

This commit is contained in:
wangw 2024-10-14 09:13:51 +08:00
parent f120867e35
commit cab483a7b9
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public interface TbConsInfoFlowRepository extends JpaRepository<TbConsInfoFlow,
"where flow.shopId = :shopId " +
"AND flow.createTime > :startTime " +
"AND flow.createTime < :endTime " +
"AND flow.bizName IN :types " +
"AND flow.bizCode IN :types " +
"ORDER BY flow.id DESC")
Page<TbConsInfoFlow> findByConsParam(Integer shopId, Integer consId, String conName, Integer conTypeId, List<String> types,
Date startTime, Date endTime, Pageable pageable);